> For the complete documentation index, see [llms.txt](https://docs.tnid.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.tnid.com/company/b2c-features/search-people.md).

# Search People

{% hint style="info" %}
The company GraphQL API is accessible at /company
{% endhint %}

* 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
	}
  }

```
