Retrieve a list of available account client contacts returning the ID to use in other Queries and Mutations as well as other product information.

Note: You can also use pagination as part of this query.

query contactList {
	contactList {
    id
    email
    firstName
    lastName
    phone
    address
    company
    accountNumber
	}
}