INPUT_OBJECT
SearchStringField
Used in the Search object. Allows you to search against string fields.
link GraphQL Schema definition
- input SearchStringField {
- # The model attribute you wish to reference.
- : String!
- # The value to search for.
- : String!
- # `true` to match results that match the search value. `false` to exclude results
- # that match the search value.
- : Boolean!
- # If `true`, return results that match the value in `search_value` in any part of
- # their value. If `false`, the entire string must match the value in
- # `search_value` to match.
- : Boolean
- }