Skip to content

Instantly share code, notes, and snippets.

@ksaldana1
Created March 13, 2020 01:22
Show Gist options
  • Save ksaldana1/fa1c0988151ecb3ceec62ce8540bfff3 to your computer and use it in GitHub Desktop.
Save ksaldana1/fa1c0988151ecb3ceec62ce8540bfff3 to your computer and use it in GitHub Desktop.
gql_example_1
type Query {
messages: [Message!]!
}
type Message {
id: ID!
text: String!
author: MessageAuthor!
}
union MessageAuthor = User | Guest
type User {
id: ID!
name: String!
dateCreated: String!
messages: [Message!]!
}
type Guest {
# Placeholder name to query
name: String!
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment