So I believe multi-operation documents are a thing in GraphQL, i.e. you can select one using an operation name. When I do this I get an error response: “An operation name is required”; but I supplied the operation name.
So in the developer’s playground I created a document with 2 queries:
query SingleBoard {
boards(limit:1) {
name
columns {
title
id
type
}
groups {
title
id
}
items {
name
group {
id
}
column_values {
id
value
text
}
}
}
}
query AllBoards {
boards(limit:10) {
name
}
}
Sure enough, even though I have a drop-down under the play button in the developer’s playground that allows me to select which query I want, I get “An operation name is required” error regardless of which query I pick.
Is this a limitation of the Monday API?