Skip to content

Instantly share code, notes, and snippets.

@freiksenet
Last active April 6, 2018 14:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save freiksenet/83ebfee1ebc1b847b84f0a56ab036065 to your computer and use it in GitHub Desktop.
Save freiksenet/83ebfee1ebc1b847b84f0a56ab036065 to your computer and use it in GitHub Desktop.
# Source query
{
node(id: "test-global-id") {
id # Does not exist on User or Blog in original schemas
... on User { # Only valid in userById
username
}
... on Blog { # Only valid in blogById
title
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment