query {
tenant {
users {
id
username
profile {
id
fullname
nickname
photoUrl
}
}
}
}
{
"data": {
"tenant": {
"users": [
{
"id": "2",
"profile": null,
"username": "someone2@example.com"
},
{
"id": "1",
"profile": {
"fullname": "Johnny Silverhand",
"id": "2",
"nickname": "Samurai",
"photoUrl": null
},
"username": "someone@example.com"
}
]
}
}
}