I have more than 6000 subitems on my monday.com board. How can I fetch the count of subitems in a one go using query.
Hello @Shreyas13398,
You can get the count by running this query:
{
boards(ids: SUBITEM_BOARD_ID) {
items_count
}
}
1 Like
Thanks. It worked.
1 Like