You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am pretty new to graphQL so I'm sorry if this is very trivial. I'm trying to update a user first name using a mutation, but it returns No values were updated in collection 'users' using key 'id' because no values were found., which is very weird because I can see my record when querying allUsers
Here is the mutation I tried:
mutation test($input: UpdateUserByIdInput!) {
updateUserById(input: $input) {
user {
firstName
id
}
}
}