Hey,
I’m trying to get all the items at a certain date at a certain time. The following query works for date:
query {items_by_multiple_column_values (board_id: 708469745, column_id: \\"date\\", column_values: \\"2022-01-03\\") {name column_values{title text} group{title}}}
But I’m also trying to do this with time:
query {items_by_multiple_column_values (board_id: 708469745, column_id: \\"date\\", column_values: \\"2022-01-03 13:00\\") {name column_values{title text} group{title}}}
This doesn’t seem to work, but when I just get everything date and time is formatted like this:
Does anyone know how I would get items by date and time?
Thanks a lot!