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
Currently sort is dialect-specific (as it's being passed into the query as a raw string, therefore subject to dialects quoting rules) and being limited to one key
One idea that would work is to convert sort to accepting an array [[key, 'ASC/DESC']] and then iterate over that like this
For backwards compatibility the new behaviour could be a flag or switched with sortParam.startsWith('[') (where the old schema is converted to the new one internally)
The text was updated successfully, but these errors were encountered:
Currently sort is dialect-specific (as it's being passed into the query as a raw string, therefore subject to dialects quoting rules) and being limited to one key
One idea that would work is to convert sort to accepting an array [[key, 'ASC/DESC']] and then iterate over that like this
For backwards compatibility the new behaviour could be a flag or switched with sortParam.startsWith('[') (where the old schema is converted to the new one internally)
The text was updated successfully, but these errors were encountered: