added
New GraphQL feature: Query/filter cards by updated_at
over 6 years ago by Raphael Costa
We are happy to announce that now we support to filter and query card by the updated_at
field inside the allCards
query. This new feature will avoid the need to look through all cards to find the last updated ones for example.
Sample query:
query allCardUpdatedYesterday {
allCards(first: 20, pipeId: 123,filter: { field: "updated_at", operator: gt, value: "2018-08-01T23:50:11-03:00"}) {
edges {
node {
id
title
}
}
}
}
Changelog
- added: updated_at filter inside allCards root query