Skip to content
For AI agents: the complete documentation index is available at llms.txt; this page is also available as Markdown at index.md.

Sibling Criterion

The Sibling Search Criterion searches for content under the same parent as the indicated location.

Arguments

  • locationId - int representing the location ID
  • parentLocationId - int representing the parent location ID

Example

1
2
3
4
5
6
7
8
<Query>
    <Filter>
        <SiblingCriterion>
            <locationId>85</locationId>
            <parentLocationId>81</parentLocationId>
        </SiblingCriterion>
    </Filter>
</Query>
1
2
3
4
5
6
7
8
"Query": {
    "Filter": {
        "SiblingCriterion": {
            "locationId": 85,
            "parentLocationId": 81
        }
    }
}