SearchResponse
type SearchResponse {
documents: [Document!]!
totalCount: Int!
cursor: String
}
Fields
SearchResponse.documents
● [Document!]!
non-null object
List of found documents based on given filters @exposed
SearchResponse.totalCount
● Int!
non-null scalar
Total count of found documents, keep in mind this number is an estimate @exposed
SearchResponse.cursor
● String
scalar
The absence of the cursor value means that there are no more results available @exposed
Returned by
search
query
Member of
SavedSearchResponse
object