Hey,
I would appreciate help regarding 2 API calls I want to make:
- Retrieving items within a certain date range to a certain board,
For example, I want all the items from 01.12.23 to 31.12.23, how do I write it?
{
“query”: “{ boards (ids: XXXXXXXXXX)
{ items_page (limit: 100) { cursor items { id name } } } }”
}
- Is it possible to retrieve all the items in a certain date range independently of the board?
That is, I want to receive all the items from 01.12.23 to 31.12.23 for all the boards in my account.