Search User (People)

Search for users who have existing profiles. Name field queries full name or username fields.

query (
	$name: String
	$email: String
	$telephoneNumber: String
	$limit: Int
  ) {
	users (
  	name: $name
  	email: $email
  	telephoneNumber: $telephoneNumber
  	limit: $limit
	) {
  	id
  	username
  	firstName
  	middleName
  	lastName
  	birthdate
  	aboutMe
  	timezone
  	metadata
  	addresses {
    	city
    	country
    	state
    	street
    	types
    	zipCode
  	}
  	emails {
    	email
  	}
  	telephoneNumbers {
    	number
  	}
  	socialNetworks {
    	type
    	url
  	}
  	webpages {
    	type
    	url
  	}
  	interests {
    	description
    	title
  	}
	}
  }

Last updated

Was this helpful?