
Hello everyone, :appwritecheers:
I'm facing an issue using GraphQL in order to retrieve information from a user from prefs field.
https://cloud.appwrite.io/v1/graphql
query {
usersList {
total
users {
_id
name
prefs {
data
}
}
}
}```
RESPONSE :
```JSON
{
"data": {
"usersList": {
"total": 1,
"users": [
{
"_id": "65eb064279c82abf12ee",
"name": "EniXo",
"prefs": null
}
]
}
}
}```
I've tried with REST and it is working find 👀
https://cloud.appwrite.io/v1/users
RESPONSE (partial) :
```JSON
{
"total": 1,
"users": [
{
"$id": "65eb064279c82abf12ee",
"name": "EniXo",
"prefs": {
"firstName": "Valentin",
"lastName": "Lebarbanchon"
},
}
]
}
Are you aware of this issue or is it a miss configuration on my side ?
Thanks in advance :appwritebow:
Recommended threads
- approve deployment do not work
In https://github.com/cennso/cennso-website/pull/2 I see failing and when I go to https://cloud.appwrite.io/console/git/authorize-contributor?projectId=68f64b7b...
- Function execution stuck in "Processing"...
Hey! Is there any way to stop function execution? I know, I can set a timeout in seconds and I did. This particular function have 900 seconds timeout set in Clo...
- Messaging via Resend: "to": "\"undisclos...
I'm using the node-appwrite@18.0.0 SDK. ``` await messaging.createEmail({ messageId: ID.unique(), subject: "Subject", content: `htmlCont...
