I followed the exact steps mentioned in Quickstart - Integrations but it was throwing some errors.
I made the following changes in the code and it worked -
Changed $itemId: [Int!] to $itemId: [ID!] in the getColumnValue function
and changed mutation change_column_value($boardId: Int!, $itemId: Int! …
to mutation change_column_value($boardId: ID!, $itemId: ID!
Is there any guide in the documentation covering the different types of variables available and which variables use which types?
Also, what is the ! after the type of variable? Does it mean that the variable can be NULL?