Skip to content

Latest commit

 

History

History
14 lines (11 loc) · 1.11 KB

File metadata and controls

14 lines (11 loc) · 1.11 KB

EntitySearch

Properties

Name Type Description Notes
field_ids list[str] Fields to include as columns in the search result entities - array of field_id strings
query list[Predicate] Search query to perform on the designated entity
order list[Order] Order in which the search results should be returned [optional]
limit int Number of rows to return. Default is 100, min is 1, max is 2000. [optional]
before_id str Used to paginate search results to the previous page. before_id should be the uuid of the first item in the current page. May not be provided simultaneously with after_id. [optional]
after_id str Used to paginate search results to the next page. after_id should be the uuid of the last item in the current page. May not be provided simultaneously with before_id. [optional]

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