Get an client contact from your account by there email address

query contactByEmail {
	contact(email:"[email protected]") {
    id
    email
    firstName
    lastName
    phone
    address
    company
    accountNumber
	}
}