With addiing complexity I get that the query is 3095, which is still okay no?
{
“data”: {
“complexity”: {
“before”: 10000000,
“query”: 3095,
“after”: 9996905,
“reset_in_x_seconds”: 60
},
With the following next page:
query{
next_items_page(
cursor: “MSwzODY4Mjc4NDMwLDhfaWxtVTJhQWVqLS1IMjl3dE0tQiw0MjMsMix8MzI3ODM3ODYwMw”
) {
cursor
items {
id
column_values {
column {
id
title
type
}
value
text
}
column_values {
... on MirrorValue {
column {
id
title
type
}
display_value
text
}
}
}
I’d recommend editing this post and changing it to be posted in the “monday Apps & Developers” section. “monday dev” is about the monday dev product (which is a set of templates and special features for developers using monday.com).
Well that said, looking at your query the issue is you put column_values twice. You can only include it once. BUT you can put as many different fragments ... on MirrorValue or ... on DropdownValue within a single column_values as you need. the fragments are only executed “on” columns of the appropriate type.
This
column_values {
id
type
column {
title
}
text
value
... on MirrorValue {
display_value
}
... on DropdownValue {
values {index, label}
}
}