This will find all Content Items where the value "Basic Information" is not present in the field that stores all assigned layers "layerSchemaIds".
-layerSchemaIds:BasicInformation
To check if a field or layer is not available you negate the value with a dash
The syntax is based on Elastic Search Boolean Operator Logic: https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-query-string-query.html#_boolean_operators
If you want to explicitly search in document fulltext you can add the searchType to the URL as query string parameter. Picturepark knows multiple areas that store either metadata information or full-text information.
//search in fulltext &searchType=FullText //search in metadata and fulltext &searchType=MetadataAndFullText //search in metadata only (default behavior without search query parameter) &searchType=Metadata //URL example https://customer.picturepark.com/ContentBrowser/XChannel?search=BasicInformation&searchType=Metadata
Add Comment