Created
March 13, 2020 01:22
-
-
Save ksaldana1/fa1c0988151ecb3ceec62ce8540bfff3 to your computer and use it in GitHub Desktop.
gql_example_1
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
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