Created
November 26, 2021 14:07
-
-
Save bobvanluijt/263a64c5e633b5914dcf30588af9f3de 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( | |
ask: { | |
question: "What was Michael Brecker's first saxophone?" | |
properties: ["content"] | |
} | |
where: { | |
operator: Equal | |
path: ["inArticle", "Article", "title"] | |
valueString: "Michael Brecker" | |
} | |
limit: 1 | |
) { | |
_additional { | |
answer { | |
result | |
} | |
} | |
content | |
order | |
title | |
inArticle { | |
... on Article { | |
title | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment