GraphQL Query
query Viewer {
viewer {
user {
id
fullName
email
}
employees {
company {
id
name
}
location {
id
name
}
}
}
}
Example Variables
{}
Example Response
{
"data": {
"viewer": {
"user": {
"id": "53350",
"fullName": "Roubler Support",
"email": "api_user@roubler.com"
},
"employees": [
{
"company": {
"id": "4",
"name": "Roubler UK"
},
"location": {
"id": "6",
"name": "Roubler UK"
}
},
{
"company": {
"id": "10",
"name": "Roubler Dev"
},
"location": {
"id": "143",
"name": "Roubler Dev"
}
},
{
"company": {
"id": "999",
"name": "Integration Sandbox"
},
"location": {
"id": "12325",
"name": "Integration Sandbox"
}
}
]
}
}
}