Hi!
Today the monday API request that I was using to get subitems broke, every new item that is using subitems, will not have a group id like “subitems_of_PARENT_ITEM”, but instead all group ids = “topics”.
This is my API request:
The GROUP_ID_FOR_PARENT_ITEM var below is something like “subitems_of_XXXXX” (with the exact item ID to use, I am inputting XXXXX to select ONLY subitems of a specific item)
query {
boards (ids: BOARD_ID_SUBITEMS) {
groups (ids: GROUP_ID_FOR_PARENT_ITEM) {
items { id name }
}
}
}
This works fine for my old items but suddenly new items added to my group will have all GROUP_ID_FOR_PARENT_ITEM = ‘topics’ now.
Did you change the API?
If so, any way I can now narrow down easily the subitems response only to subitems belonging to a specific item ID?
Thanks,
Lorenzo