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
updateUser(id: ID!,user: UserInput,is_create_update_xero: Boolean): User
aaaaaaaand another weird thing about it is when i do this in another place on the app(authenticated page), it adds the variable definition for is_create_update_xero.
not sure if having an authenticated page changes anything.
Please help :(
The text was updated successfully, but these errors were encountered:
as you can see the $is_create_update_xero: Boolean! is missing in the variable definition in the query.
Without the variable definition, the back end won't be able to receive the is_create_update_xero
Work around:
I just passed a "false" string: user.$push({ is_create_update_xero: 'false' }) , it looks reallyyy bad
but that's the only workaround I could think of
kempsteven
changed the title
.$push does not add variables to variable definitions on mutation
BUG: .$push does not add variables to variable definitions on mutation
Mar 4, 2021
As you can see in the image above:
The variable
is_create_update_xero
is not in the variable definitions of updateUser.Here is the code that I use:
Mutation Type Def
aaaaaaaand another weird thing about it is when i do this in another place on the app(authenticated page), it adds the variable definition for is_create_update_xero.
not sure if having an authenticated page changes anything.
Please help :(
The text was updated successfully, but these errors were encountered: