Factors
Use the logical operators OR
, or AND
to query by multiple factors simultaneously as follows:
GET http://<hostname>/api/entities/query?query=String('Title')=='title' AND Bool('IsDraft')
Additionally, you can group factors to express explicit logical precedence as follows:
GET http://<hostname>/api/entities/query?query=(Definition.Name == "M.Asset" AND FullText == "a") OR Definition.Name == 'M.File'
Can we improve this article ? Provide feedback