Before I could query items by ID like this:
{
boards(ids: 1303312611) {
items(ids:5820698515) {
id
name
column_values(ids: “person”) {
value
text
}
}
}
}
Now we have to use items_page as parent to query items. If I just add items_page to the query as below, I get an error saying items doesn’t have an argument called ids. You also can’t use ids as a filter column I think. So how can I query with items_page an item by ID?
{
boards(ids: 1303312611) {
items_page(limit: 1) {
items(ids:5820698515) {
id
name
column_values(ids: “person”) {
value
text
}
}
}
}
}