Hi,
We are currently develop a Calendar App (very much like the default calendar, with some extra features) and I’m facing serious performance issue because I’m getting ALL the data without any filtering. I would like to filter the data based on specific date range (only display the data of current month / week) but it seems not possible based on this ticket Query Column Value by Range - #2 by Scott-monday.com
Is there any other advise / work around for this issue?
This is my query:
query ($boardIds: dInt]) {
boards (ids:$boardIds) {
name
items {
id
name
group { color }
column_values { id title text value }
}
groups {
id
}
}
}
Br, YarHuoy