ContactsField
A list of contacts filtered by input.
interface ContactsField {
contacts(
after: String
before: String
filter: ContactFilter
first: Int
last: Int
orderBy: ContactOrder
): ContactConnection
}
Fields
ContactsField.contacts ● ContactConnection object common
Lists all contacts.
ContactsField.contacts.after●Stringscalar commonReturns the elements in the list that come after the specified cursor.
ContactsField.contacts.before ● String scalar common
Returns the elements in the list that come before the specified cursor.
ContactsField.contacts.filter ● ContactFilter input common
The fields by which to filter the results.
ContactsField.contacts.first ● Int scalar common
Returns the first n elements from the list.
ContactsField.contacts.last ● Int scalar common
Returns the last n elements from the list.
ContactsField.contacts.orderBy ● ContactOrder input common
The field and direction by which to order the results.