searchById
Enterprise
description
Returns the search results for saved search id.
searchById(
id: String!
limit: Int = 25
cursor: String
sorting: SearchSorting
date: DateFilter
overrides: SearchFilter
): SavedSearchResponse
Arguments
searchById.id
● String!
non-null scalar
Saved Search Id
searchById.limit
● Int
scalar
Limits the number of results. The maximum limit is 100.
searchById.cursor
● String
scalar
Pagination is cursor based. To get the next page of results, provide the cursor from the previous response. When there are no more results, cursor will not be provided.
searchById.sorting
● SearchSorting
input
Sets sorting order for search results, acts as an override to the saved search sorting order
searchById.date
● DateFilter
deprecated input
DEPRECATED: Use overrides.date insteadDate filter for search results. The original savedSearch date filter will be overridden.
searchById.overrides
● SearchFilter
input
Filter overrides to apply to the saved search filters. These filters will override the corresponding filters from the saved search.
Type
SavedSearchResponse
object
Search results for a given Saved Search Id
Loading...