Created
November 26, 2021 14:07
-
-
Save bobvanluijt/0869cb86d45afd44ec54d0d22cf16cd6 to your computer and use it in GitHub Desktop.
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
{ | |
Get { | |
Paragraph( | |
nearText: { | |
concepts: ["jazz saxophone players"] | |
} | |
limit: 25 | |
) { | |
content | |
order | |
title | |
inArticle { | |
... on Article { # <== Graph connection I | |
title | |
hasParagraphs { # <== Graph connection II | |
... on Paragraph { | |
title | |
} | |
} | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment