Jenkins
07/11/2018, 8:36 PMquery {
users {
id
email
}
}
gives:
{
"data": {
"users": [
{
"id": "63f14583-de97-429a-bfc0-c296eb636e6d",
"email": "<mailto:christian@jenkins.no|christian@jenkins.no>"
}
]
}
}
but this:
query {
user(where: {
id: "63f14583-de97-429a-bfc0-c296eb636e6d"
}) {
id
email
}
}
gives:
{
"data": {
"user": null
}
}
Querying by only email works. Id and email are unique.