Get items that were updated after a specific date

I need to get items periodically. I want to get not all item but only those that have been updated since a specific date. I didn’t see this option in the documentation.
As a result, I have questions:

  1. How do I get items that were updated after a specific date?
  2. How do I get items that were deleted after a specific date?

Hello @o.zhdan and welcome to the community!

I hope you like it here :muscle:

As of today there is no way of retrieving an items list sorted by the update date. You would have to use a query like the next one to get the update date of the items and then sort the items on your end:

{
  boards(ids: 12345678) {
    items {
      updated_at
    }
  }
}

Regarding the deleted items, we are experiencing an issue about it, but it will be available soon. Same thing here. You will need to query all of them and then sort them out (filter them) on your end.

Cheers,
-Matias