As shown in the attached image, even though the documentation says the items_page accepts an array of item ids, when added, it throws an error.
Still on item ids, the new items_page will only work under a boards query which unfortunately is a step backwards from the previous item query where all you needed to know is the item id to get information about the item.
What happens when you have multiple item ids which are located in different boards? Does it mean you will have to query for all the board ids and then in the boards query, include all the board ids?
So in effect, the final query might look like this:
{
boards(ids: [MULTIPLE_BOARD_IDS_HERE]) {
items_page(ids:[ITEM_IDS_FROM_THE_DIFFERENT_BOARDS], limit: 3) {
cursor
items {
id
name
}
}
}
}

