SearchResponse
type SearchResponse {
  documents: [Document!]!
  documentsV2: [Document]!
  totalCount: Int!
  cursor: String
}
Fields
SearchResponse.documents ● [Document!]! non-null object
List of found documents based on given filters @exposed
SearchResponse.documentsV2 ● [Document]! non-null object
List of found documents based on given filters. If there is any error while fetching any document then null is returned for that document in the list @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