aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/graphql-go/graphql/kitchen-sink.graphql
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/graphql-go/graphql/kitchen-sink.graphql')
-rw-r--r--vendor/github.com/graphql-go/graphql/kitchen-sink.graphql52
1 files changed, 0 insertions, 52 deletions
diff --git a/vendor/github.com/graphql-go/graphql/kitchen-sink.graphql b/vendor/github.com/graphql-go/graphql/kitchen-sink.graphql
deleted file mode 100644
index d075edfd..00000000
--- a/vendor/github.com/graphql-go/graphql/kitchen-sink.graphql
+++ /dev/null
@@ -1,52 +0,0 @@
-# Filename: kitchen-sink.graphql
-
-query namedQuery($foo: ComplexFooType, $bar: Bar = DefaultBarValue) {
- customUser: user(id: [987, 654]) {
- id,
- ... on User @defer {
- field2 {
- id ,
- alias: field1(first:10, after:$foo,) @include(if: $foo) {
- id,
- ...frag
- }
- }
- }
- ... @skip(unless: $foo) {
- id
- }
- ... {
- id
- }
- }
-}
-
-mutation favPost {
- fav(post: 123) @defer {
- post {
- id
- }
- }
-}
-
-subscription PostFavSubscription($input: StoryLikeSubscribeInput) {
- postFavSubscribe(input: $input) {
- post {
- favers {
- count
- }
- favSentence {
- text
- }
- }
- }
-}
-
-fragment frag on Follower {
- foo(size: $size, bar: $b, obj: {key: "value"})
-}
-
-{
- unnamed(truthyVal: true, falseyVal: false),
- query
-}