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.

IsContainer Criterion

The IsContainer Search Criterion searches for content items based on whether they are containers (i.e., can contain other content items).

Arguments

  • value – boolean (optional, default: true). If true, searches for content that is a container. If false, searches for content that is not a container.

Example

You can use this Search Criterion over the REST API, in the payload of the POST /views request:

1
2
3
4
5
<Query>
    <Filter>
        <IsContainerCriterion>true</IsContainerCriterion>
    </Filter>
</Query>
1
2
3
4
5
"Query": {
    "Filter": {
        "IsContainerCriterion": true
    }
}