INPUT_OBJECT

SearchTarget

Specify which index to run a user's search.

link GraphQL Schema definition

1input SearchTarget {
5
2# When true, response will return the total number of matching documents in index
3# for a given query. The value for limit is ignored and assumed to be zero.
4countTotalMatches: Boolean
8
6# Search index to run a user's query against.
7index: SearchIndex!
11
9# Max number of matching documents that will be returned.
10limit: Int!
12}