Skip to content

Latest commit

 

History

History
30 lines (28 loc) · 571 Bytes

1233be1d4c9c7ca54126f1a0693b26de.asciidoc

File metadata and controls

30 lines (28 loc) · 571 Bytes
resp = client.index(
    index="my-index-000001",
    id="3",
    routing="1",
    refresh=True,
    body={
        "my_id": "3",
        "text": "This is an answer",
        "my_join_field": {"name": "answer", "parent": "1"},
    },
)
print(resp)

resp = client.index(
    index="my-index-000001",
    id="4",
    routing="1",
    refresh=True,
    body={
        "my_id": "4",
        "text": "This is another answer",
        "my_join_field": {"name": "answer", "parent": "1"},
    },
)
print(resp)