I would like to select all deals that don't have any tasks. I tried to do
deals(where: { tasks: [] }) { ... }
but it gives me "message": "Invalid value provided for argumentwhere: Object({\"tasks\": List([])})"
Would it be possible to use where clause to find empty lists, or (more powerfull) to be able to compare length like where: {tasks_length_lt: 10} (to get deals with less then 10 tasks)
Let's say I have the following entries:
I would like to select all deals that don't have any tasks. I tried to do
deals(where: { tasks: [] }) { ... }
but it gives me
"message": "Invalid value provided for argument
where: Object({\"tasks\": List([])})"
Would it be possible to use where clause to find empty lists, or (more powerfull) to be able to compare length like
where: {tasks_length_lt: 10}
(to get deals with less then 10 tasks)