Last active
May 24, 2022 08:33
-
-
Save factoryhr/9b10a027616586bae0d7316f39a83c77 to your computer and use it in GitHub Desktop.
IntroductionToGraphQLBlogPost
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
{ | |
getNews(id: 765, defaultLanguage: "en") { | |
id | |
title | |
shortText | |
content { | |
__typename | |
... on fieldcollection_NewsText { | |
text | |
} | |
} | |
date | |
comments { | |
__typename | |
... on object_Comment { | |
id | |
username | |
content | |
} | |
} | |
gallery { | |
__typename | |
... on hotspotimage { | |
image { | |
fullpath | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment