INPUT_OBJECT

ContactSearchAttributes

Attributes for searching for contacts

link GraphQL Schema definition

  • input ContactSearchAttributes {
  • # Where the contact's internal ID is greater than the value
  • after: Int
  • # Where the contact's internal ID is equal to the value
  • idEq: Int
  • # Exact case-sensitive match on a person's name
  • personNameEq: String
  • # Case-insensitive match for any part of a person's name
  • personNameCont: String
  • # Exact case-sensitive match on an organisation's name
  • organisationNameEq: String
  • # Case-insensitive match for any part of an organisation's name
  • organisationNameCont: String
  • # Include organisations in the search. The opposite of isPerson. To search for
  • # organisations and people, do not include isOrganisation or isPerson
  • isOrganisation: Boolean
  • # Include people in the search. The opposite of isOrganisation. To search for
  • # organisations and people, do not include isOrganisation or isPerson
  • isPerson: Boolean
  • # An unaccented, case insensitive search across organisation name and acronym, and
  • # person name.
  • #
  • # Note that this causes the contacts in the result set to be alphabetically
  • # ordered by the attribute on which the match was made, so combining this argument
  • # with `after` or `idGt` is not recommended.
  • nameCont: String
  • }

link Require by