Skip to content

Instantly share code, notes, and snippets.

@factoryhr
Last active May 24, 2022 08:33
Show Gist options
  • Save factoryhr/9b10a027616586bae0d7316f39a83c77 to your computer and use it in GitHub Desktop.
Save factoryhr/9b10a027616586bae0d7316f39a83c77 to your computer and use it in GitHub Desktop.
IntroductionToGraphQLBlogPost
{
getNews(id: 765, defaultLanguage: "en") {
id
title
shortText
content {
__typename
... on fieldcollection_NewsText {
text
}
}
date
comments {
__typename
... on object_Comment {
id
username
email
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