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
- Int :
- # Where the contact's internal ID is equal to the value
- Int :
- # Exact case-sensitive match on a person's name
- String :
- # Case-insensitive match for any part of a person's name
- String :
- # Exact case-sensitive match on an organisation's name
- String :
- # Case-insensitive match for any part of an organisation's name
- String :
- # Include organisations in the search. The opposite of isPerson. To search for
- # organisations and people, do not include isOrganisation or isPerson
- Boolean :
- # Include people in the search. The opposite of isOrganisation. To search for
- # organisations and people, do not include isOrganisation or 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.
- String :
- }