Open zameel7 opened 3 weeks ago
The graphql query that I had used:
query MyQuery { completionBlockcompletionAggregate(agg: {limit: 10}) { courseKey { agg_count } } }
The sql that was generated:
select json_object('rows', ( select json_arrayagg(json_object()) from ( select * from completion_blockcompletion limit 10 as completion_blockcompletion )
Seems like there is some issue in the json_object and json_arrayagg usage
json_object
json_arrayagg
The graphql query that I had used:
The sql that was generated:
Seems like there is some issue in the
json_object
andjson_arrayagg
usage