Users
Use the users query to obtain a list of all registered users on your account. In addition, search for a specific user or a profile user by sending the userId or profileId as an argument.
User Role
users: list the created user.
Available Arguments
Argument Name
Required?
Type
Description
userUUIDs
No
String
User database ID
profileUUIDs
No
String
User profile database ID
filters.createdAt.start
No
Date
Allows to filter users by createdAt field, both start and end fields are mandatory when using this filter. (example below)
filters.createdAt.end
No
Date
Allows to filter users by createdAt field, both start and end fields are mandatory when using this filter. (example below)
Available Fields
Field
Type
Description
name
String
Users name
email
String
Users email
phone
String
users phone number
databaseId
Sting
User's ID
Examples
Get the list of all users
{
users {
edges {
node {
name
phone
email
databaseId
}
}
}
}{
"data": {
"users": {
"edges": [
{
"node": {
"name": "UserA",
"phone": "1111-1111-1111",
"email": "[email protected]"
"databaseId": "920fd231-A1e5-75e5-9399-d2983302aabc"
}
},
{
"node": {
"name": "UserB",
"phone": "2222-2222-2222",
"email": "[email protected]"
"databaseId": "920fd231-B1a6-75a5-1111-a2111102aabc"
}
}
]
}
}
}Get list of users created under desired date range
{
users (filters:{createdAt:{start:"2024-01-10" end:"2024-02-10"} }) {
edges {
node {
name
phone
email
databaseId
createdAt
}
}
}
}{
"data": {
"users": {
"edges": [
{
"node": {
"name": "UserA",
"phone": "1111-1111-1111",
"email": "[email protected]",
"createdAt": "2024-01-11T18:14:44.777689+00:00",
"databaseId": "920fd231-A1e5-75e5-9399-d2983302aabc"
}
},
{
"node": {
"name": "UserB",
"phone": "2222-2222-2222",
"email": "[email protected]",
"createdAt": "2024-02-01T18:14:44.777689+00:00"
"databaseId": "920fd231-B1a6-75a5-1111-a2111102aabc"
}
}
]
}
}
}Search for a user by ID
{
users (userUUIDs: "9bdc5da1-ae2d-4a61-90f7-7dd8ee59663a"){
edges {
node {
id
databaseId
name
email
isActive
profileId
updatedAt
}
}
}
}{
"data": {
"users": {
"edges": [
{
"node": {
"id": "VXNlcjpWWE5sY2pvNVltUmpOV1JoTVMxaFpUSmtMVFJoTmpFdE9UQm1OeTAzWkdRNFpXVTFPVFkyTTJFPQ==",
"databaseId": "9bdc5da1-ae2d-4a61-90f7-7dd8ee59663a",
"name": "UserB",
"email": "[email protected]",
"isActive": true,
"profileId": "8e78335a-0ead-4326-b6cb-ae702f763233",
"updatedAt": "2021-12-10T15:53:52.037840+00:00"
}
}
]
}
}
}Search for a user by profile ID
{
users(profileUUIDs: "217adfda-c08e-494c-bc25-f08e41c54767") {
edges {
node {
id
databaseId
name
email
isActive
profileId
updatedAt
}
}
}
}
{
"data": {
"users": {
"edges": [
{
"node": {
"id": "VXNlcjpWWE5sY2pwaE1UVm1OelEwT1MwNE56UXlMVFJtT1RrdE9ESXhaaTB3TkRGbU16VmhNVFZpTWpFPQ==",
"databaseId": "a15f7449-8742-4f99-821f-041f35a15b21",
"name": "Suggestic Lifenome Relay",
"email": "[email protected]",
"isActive": true,
"profileId": "217adfda-c08e-494c-bc25-f08e41c54767",
"updatedAt": "2021-12-02T12:38:45.846489+00:00"
}
}
]
}
}
}Last updated
Was this helpful?