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.
  • attribute: String!
  • # The value to search for.
  • search_value: String!
  • # `true` to match results that match the search value. `false` to exclude results
  • # that match the search value.
  • match: 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.
  • partial_matching: Boolean
  • }