diff options
Diffstat (limited to 'graphcool/src/hello.graphql')
| -rw-r--r-- | graphcool/src/hello.graphql | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/graphcool/src/hello.graphql b/graphcool/src/hello.graphql new file mode 100644 index 0000000..d43c729 --- /dev/null +++ b/graphcool/src/hello.graphql @@ -0,0 +1,7 @@ +type HelloPayload { + message: String! +} + +extend type Query { + hello(name: String): HelloPayload +} |
