Hi,
I’m trying to build and incremental API to be run every 2h
however as I can see the query that I’m using is not considering datetime but only date:
query { complexity { before query after reset_in_x_seconds}
boards(ids:123456) {id
groups(ids:"XYZ")
{items_page(limit:10 query_params: {rules: e{column_id: “last_updated”, compare_value: _“EXACT”, “2024-07-21 11:00?00”], operator:greater_than_or_equals,compare_attribute:“UPDATED_AT”}]}) {cursor items
{name column_values {id text}
}
}
}
}}
what I’m trying to do is to get only the data that got updated between 2 datetimes, in the example between “EXACT” and “2024-07-21 11:00?00”. As far as I understood, the query is wrong but I couldn’t find a way to do it right 😦
Could you help me out with it?