Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 1.58 KB

SearchQuery.md

File metadata and controls

16 lines (12 loc) · 1.58 KB

SearchQuery

Properties

Name Type Description Notes
end int The end point of the range. At least one of start or end points should be available for range search. [optional]
key str The entity facet (key) by which to search. Valid keys are any property keys returned by the JSON representation of the entity. Examples are 'creatorId', 'name', etc. The following special key keywords are also valid: 'tags' performs a search on entity tags, 'tagpath' performs a hierarchical search on tags, with periods (.) as path level separators. 'freetext' performs a free text search across many fields of the entity
matching_method str The method by which search matching is performed. Default: CONTAINS [optional]
negated bool The flag to create a NOT operation. Default: false [optional]
start int The start point of the range. At least one of start or end points should be available for range search. [optional]
value str The entity facet value for which to search. Either value or values field is required. If both are set, values takes precedence. [optional]
values list[str] The entity facet values for which to search based on OR operation. Either value or values field is required. If both are set, values takes precedence. [optional]

[Back to Model list] [Back to API list] [Back to README]