I have the following query:
query ($itemID: [ID!]) {
items(ids: $itemID) {
column_values(ids: ["text1", "email1", "text8", "email4"]) {
id
text
}
}
}
With a variable of the ItemID set in the API Playground, this is happy to return results.
When called from an actual API call from Nodejs using the Monday SDK (version set to “^0.4.12”), including the exact same variable, I am getting an error message:
Arguments are invalid. The argument 'ids' should be used
I’m not even sure what to investigate next…