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
- Cant configure email templates
i configure it on the console, and when i send the OTP, it sends with appwrite's email (instead of custom smtp) and with the branding, but i have the Pro (educa...
- Need help with createExecution function
Hi, Need some help understanding createExecution. When requesting function execution via createExecution, the function handler arguments are incorrect and rese...
- Need Help with Google OAuth2 in Expo usi...
I'm learning React Native with Expo and trying to set up Google OAuth2 with Appwrite. I couldn't find any good docs or tutorials for this and my own attempt did...