SearchInput
Provides the fields and values to use when running a search mutation.
input SearchInput {
term: String!
types: [SearchableType]!
limit: Int
}
Fields
SearchInput.term
● String!
non-null scalar
The search term.
SearchInput.types
● [SearchableType]!
non-null enum
The types of resources to search for.
SearchInput.limit
● Int
scalar
Limits the number of results per type. The value can range from 1 to 10, and the default is 3.
Member Of
search
query