Skip to content
This repository has been archived by the owner on Dec 10, 2023. It is now read-only.

Commit

Permalink
Merge pull request #101 from rkaneko/issue-100
Browse files Browse the repository at this point in the history
Issue#100: Release v1.0.0
  • Loading branch information
rkaneko authored Nov 4, 2018
2 parents 354efa6 + 0ccaa00 commit 8a3f4d4
Show file tree
Hide file tree
Showing 8 changed files with 1,557 additions and 180 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ graphql-concat

Version

0.9.1
1.0.0

Synopsis

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
query IntrospectionQuery {
__schema {
queryType {
name
}
mutationType {
name
}
subscriptionType {
name
}
types {
...FullType
}
directives {
name
description
args {
...InputValue
}
onOperation
onFragment
onField
}
}
}

fragment FullType on __Type {
kind
name
description
fields(includeDeprecated: true) {
name
description
args {
...InputValue
}
type {
...TypeRef
}
isDeprecated
deprecationReason
}
inputFields {
...InputValue
}
interfaces {
...TypeRef
}
enumValues(includeDeprecated: true) {
name
description
isDeprecated
deprecationReason
}
possibleTypes {
...TypeRef
}
}

fragment InputValue on __InputValue {
name
description
type {
...TypeRef
}
defaultValue
}

fragment TypeRef on __Type {
kind
name
ofType {
kind
name
ofType {
kind
name
ofType {
kind
name
}
}
}
}

4 changes: 1 addition & 3 deletions examples/library/graphql/IntrospectionQuery.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,7 @@ query IntrospectionQuery {
args {
...InputValue
}
onOperation
onFragment
onField
locations
}
}
}
Expand Down
Loading

0 comments on commit 8a3f4d4

Please sign in to comment.