Skip to main content

How to get count of all the subitems of the board

  • April 7, 2023
  • 3 replies
  • 695 views

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.

3 replies

kolaai
Forum|alt.badge.img
  • monday.com Partner
  • April 7, 2023

Hello @Shreyas13398,

You can get the count by running this query:

{
  boards(ids: SUBITEM_BOARD_ID) {
    items_count
  }
}

  • Author
  • Participating Frequently
  • April 7, 2023

Thanks. It worked.


Matias.Monday
Forum|alt.badge.img
  • monday.com Team Member
  • April 9, 2023

Thank you @kolaai !!!