When I use monday.api() from the node module “monday-sdk-js” with the query
query {
items (ids: [3298111887,4254562863,3286311905]) {
name
}
}
then I get only two items back:
"data": {
"items": [
{
"name": "task #3"
},
{
"name": "Ads"
}
]
},
"account_id": 13449709
}
When I do the same with GraphQL playground then I get all three:
{
"data": {
"items": [
{
"name": "task #3"
},
{
"name": "Item 3"
},
{
"name": "Ads"
}
]
},
"account_id": 13449709
}
The items are on different boards. One of them is shared
And the shared one doesn’t appear. What could be the reason?