Created
November 17, 2021 10:08
-
-
Save danstarns/debb3396dde76457cdcfcfd55e002ea0 to your computer and use it in GitHub Desktop.
neo4j-graphql-aggregations-highest-movie-rating-gql
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| movies(where: { title: "The Da Vinci Code" }) { | |
| title | |
| reviewersAggregate { | |
| edge { | |
| rating { | |
| max | |
| } | |
| } | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment