Search People

Use this function to search for Users (People) within the TNID platform.

The company GraphQL API is accessible at /company

  • 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
  	firstName
  	lastName
  	middleName
  	username
	}
  }

Last updated

Was this helpful?