File tree Expand file tree Collapse file tree 1 file changed +29
-21
lines changed Expand file tree Collapse file tree 1 file changed +29
-21
lines changed Original file line number Diff line number Diff line change 435
435
{
436
436
"luke" : {
437
437
"name" : " Luke Skywalker"
438
- },
438
+ }
439
439
}
440
440
```
441
441
@@ -802,10 +802,12 @@ query IntrospectionQueryTypeQuery {
802
802
and we get back:
803
803
804
804
``` json
805
- "__schema" : {
806
- "query" : {
807
- "name" : " Query"
808
- },
805
+ {
806
+ "__schema" : {
807
+ "query" : {
808
+ "name" : " Query"
809
+ }
810
+ }
809
811
}
810
812
```
811
813
@@ -831,8 +833,10 @@ query IntrospectionDroidTypeQuery {
831
833
and we get back:
832
834
833
835
``` json
834
- "__type" : {
835
- "name" : " Droid"
836
+ {
837
+ "__type" : {
838
+ "name" : " Droid"
839
+ }
836
840
}
837
841
```
838
842
@@ -851,9 +855,11 @@ query IntrospectionDroidKindQuery {
851
855
and we get back:
852
856
853
857
``` json
854
- "__type" : {
855
- "name" : " Droid" ,
856
- "kind" : " OBJECT"
858
+ {
859
+ "__type" : {
860
+ "name" : " Droid" ,
861
+ "kind" : " OBJECT"
862
+ }
857
863
}
858
864
```
859
865
@@ -873,9 +879,11 @@ query IntrospectionCharacterKindQuery {
873
879
and we get back:
874
880
875
881
``` json
876
- "__type" : {
877
- "name" : " Character" ,
878
- "kind" : " INTERFACE"
882
+ {
883
+ "__type" : {
884
+ "name" : " Character" ,
885
+ "kind" : " INTERFACE"
886
+ }
879
887
}
880
888
```
881
889
@@ -912,28 +920,28 @@ and we get back:
912
920
"name" : null ,
913
921
"kind" : " NON_NULL"
914
922
}
915
- }
923
+ },
916
924
{
917
925
"name" : " name" ,
918
926
"type" : {
919
927
"name" : " String" ,
920
928
"kind" : " SCALAR"
921
929
}
922
- }
930
+ },
923
931
{
924
932
"name" : " friends" ,
925
933
"type" : {
926
934
"name" : null ,
927
935
"kind" : " LIST"
928
936
}
929
- }
937
+ },
930
938
{
931
939
"name" : " appearsIn" ,
932
940
"type" : {
933
941
"name" : null ,
934
942
"kind" : " LIST"
935
943
}
936
- }
944
+ },
937
945
{
938
946
"name" : " primaryFunction" ,
939
947
"type" : {
@@ -993,15 +1001,15 @@ and we get back:
993
1001
"kind" : " SCALAR"
994
1002
}
995
1003
}
996
- }
1004
+ },
997
1005
{
998
1006
"name" : " name" ,
999
1007
"type" : {
1000
1008
"name" : " String" ,
1001
1009
"kind" : " SCALAR" ,
1002
1010
"ofType" : null
1003
1011
}
1004
- }
1012
+ },
1005
1013
{
1006
1014
"name" : " friends" ,
1007
1015
"type" : {
@@ -1012,7 +1020,7 @@ and we get back:
1012
1020
"kind" : " INTERFACE"
1013
1021
}
1014
1022
}
1015
- }
1023
+ },
1016
1024
{
1017
1025
"name" : " appearsIn" ,
1018
1026
"type" : {
@@ -1023,7 +1031,7 @@ and we get back:
1023
1031
"kind" : " ENUM"
1024
1032
}
1025
1033
}
1026
- }
1034
+ },
1027
1035
{
1028
1036
"name" : " primaryFunction" ,
1029
1037
"type" : {
You can’t perform that action at this time.
0 commit comments