hasura / hasura/graphql-data-specification
allow aggregate fields of array relationships in boolean expressions to have arguments
Open
- Dominant language
- No language data
- Stars
- 19
- Forks
- 3
- PR merge metrics
- No merged PRs in 30d
Description
To allow something along these lines:
Select all albums where the longest song in the album is written by 'Steve Harris'
```graphql
{
tracks_aggregate: {
arguments: {
order_by: { milliseconds: desc }
limit: 1
}
expression: {
nodes: {
expression: {
composer: { _eq: 'Steve Harris' }
}
}
}
}
}
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.