Created
January 9, 2022 09:25
-
-
Save danstarns/d5c0b8b55aedd45830fe441734769a7f to your computer and use it in GitHub Desktop.
neo4j-chainlink-query.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
MATCH (m:Movie) | |
WITH m AS m | |
ORDER BY size(m.title) DESC | |
WITH collect(m.title) AS list | |
RETURN { result: head(list) } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment