
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
- 500 Error on Console when Using Custom D...
Hey 👋 I’ve set up a custom domain for my Appwrite Cloud project (<my-custom-domain>). DNS is configured and the organization view loads fine when I open the c...
- 2 Columns still processing since yesterd...
Hey o/ Yesterday (around <t:1758045600:f>), I created a database and added several columns to it. After about 15 minutes, most of the "processing" tags disappe...
- 503 Timeout when Updating or Upserting D...
Hey I’m running into an issue when trying to update or upsert a row in Appwrite. The request hangs for a while and then throws this error: ``` AppwriteException...
