Hi there,
I would like to ask what is expected behaviour when I will index with the same ID but different parent multiple times?
For example:
PUT /tests/a/50?parent=25
{
"item": "C"
}
PUT /tests/a/50?parent=26
{
"item": "D"
}
PUT /tests/a/50?parent=50
{
"item": "E",
"item2": "F",
}
What should be the result? 1 document with 3 versions or 3 different documents?
Thanks