You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* [some filters] {
arrayField[] -> {...}, // works everywhere
arrayField[] | order (field) -> {...}, // should work, but does not
"arrayField": arrayField[] | order (field) -> {...}, // workaround
}
The text was updated successfully, but these errors were encountered:
@runeb I faced the same issue and this workaround worked perfectly fine. But there is one more thing I would like to add:
Before Update: issuesList[]-> | order(_updatedAt desc) {...fields}
After Update: "issuesList": issuesList[]-> | order(_updatedAt desc) {...fields}
Before update line works well for me when I was out of draft mode, when I go into draft mode/preview mode then the before update one query threw the mentioned error.
The text was updated successfully, but these errors were encountered: