searchById
description
Returns the search results for saved search id.
searchById(
id: String!
limit: Int = 25
cursor: String
sorting: SearchSorting
date: DateFilter
): 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
searchById.date
● DateFilter
input
Date filter for search results. The original savedSearch date filter will be overridden.
Type
SavedSearchResponse
object
Search results for a given Saved Search Id
Loading...