For the complete documentation index, see llms.txt. This page is also available as Markdown.

$not

The $not function allows you to filter search results with one or more conditions and the inverse of the query must be true. The following query would return results where the template ID is not equal to 1.

{
    "query": {
        "$not": [
            {
                "$eq": [
                    "templateid",
                    1
                ]
            }
        ]
    },
    "rows": 0,
    "start": 100
}

Last updated

Was this helpful?