We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7994bb8 commit b4dd807Copy full SHA for b4dd807
README.md
@@ -31,7 +31,40 @@ There is a sample web api project hosting the GraphiQL interface. `yarn install
31
> yarn start
32
```
33

34
+```
35
+Query Statement
36
+
37
+query StarWars($idValue: String!){
38
+ human(id:$idValue){
39
+ __typename
40
+ name
41
+ homePlanet
42
+ appearsIn
43
+ friends{
44
45
+ }
46
47
+}
48
49
+query Values
50
+{
51
+ "idValue": "1"
52
53
54
+Mutation Statment
55
+mutation StarWars($idValue: String!,$nameValue: String!){
56
+ human(id:$idValue,name:$nameValue){
57
+ id
58
59
60
61
62
63
64
+ "idValue": "1",
65
+ "nameValue": "Luke Skywalker"
66
67
68
## Usage
69
70
Define your schema with a top level query object then execute that query.
0 commit comments