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.

IsUserBased Criterion

The IsUserBased Search Criterion searches for content that plays the role of a User account.

Note

In the default setup only the user content type is treated as user accounts.

Arguments

  • (optional) value - bool representing whether to search for User-based (default true) or non-User-based content

Limitations

The IsUserBased Criterion isn't available in Solr or Elasticsearch engines.

Example

REST API

1
2
3
4
5
<Query>
    <Filter>
        <IsUserBasedCriterion>false</IsUserBasedCriterion>
    </Filter>
</Query>
1
2
3
4
5
"Query": {
    "Filter": {
        "IsUserBasedCriterion": "false"
    }
}