-
I have this query defined in a allDrives ($order):
SELECT * FROM drives
ORDER BY $order; I've tried making |
Beta Was this translation helpful? Give feedback.
Answered by
simolus3
Jan 6, 2021
Replies: 1 comment
-
This is not currently supported, you'd have to pass something like |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
CDDelta
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is not currently supported, you'd have to pass something like
OrderBy([OrderingTerm.asc(Constant(1))])
to ignore the order by. I can look into default values forORDER BY
too, feel free to open an issue for that.