Handle incompatible aggregate function and column in @orderBy
directive
#2487
Labels
enhancement
A feature or improvement
@orderBy
directive
#2487
What problem does this feature proposal attempt to solve?
The orderBy directive provides 5 aggregate functions: AVG, MIN, MAX, SUM, COUNT. Not all of these functions can be used with all column types. This should be handled and should return a user friendly message in the response.
Specifically, AVG and SUM only work on numeric column types.
Which possible solutions should be considered?
Handling the specific issue mentioned with AVG and SUM on non-numeric types, could be solved simply with:
However, a more robust way of testing whether the aggregate function actually works with the specified column would be better.
The text was updated successfully, but these errors were encountered: