Skip to content

Commit 0107415

Browse files
committed
make json correct
1 parent 08ad837 commit 0107415

File tree

1 file changed

+29
-21
lines changed

1 file changed

+29
-21
lines changed

README.md

Lines changed: 29 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -435,7 +435,7 @@ is:
435435
{
436436
"luke": {
437437
"name": "Luke Skywalker"
438-
},
438+
}
439439
}
440440
```
441441

@@ -802,10 +802,12 @@ query IntrospectionQueryTypeQuery {
802802
and we get back:
803803

804804
```json
805-
"__schema": {
806-
"query": {
807-
"name": "Query"
808-
},
805+
{
806+
"__schema": {
807+
"query": {
808+
"name": "Query"
809+
}
810+
}
809811
}
810812
```
811813

@@ -831,8 +833,10 @@ query IntrospectionDroidTypeQuery {
831833
and we get back:
832834

833835
```json
834-
"__type": {
835-
"name": "Droid"
836+
{
837+
"__type": {
838+
"name": "Droid"
839+
}
836840
}
837841
```
838842

@@ -851,9 +855,11 @@ query IntrospectionDroidKindQuery {
851855
and we get back:
852856

853857
```json
854-
"__type": {
855-
"name": "Droid",
856-
"kind": "OBJECT"
858+
{
859+
"__type": {
860+
"name": "Droid",
861+
"kind": "OBJECT"
862+
}
857863
}
858864
```
859865

@@ -873,9 +879,11 @@ query IntrospectionCharacterKindQuery {
873879
and we get back:
874880

875881
```json
876-
"__type": {
877-
"name": "Character",
878-
"kind": "INTERFACE"
882+
{
883+
"__type": {
884+
"name": "Character",
885+
"kind": "INTERFACE"
886+
}
879887
}
880888
```
881889

@@ -912,28 +920,28 @@ and we get back:
912920
"name": null,
913921
"kind": "NON_NULL"
914922
}
915-
}
923+
},
916924
{
917925
"name": "name",
918926
"type": {
919927
"name": "String",
920928
"kind": "SCALAR"
921929
}
922-
}
930+
},
923931
{
924932
"name": "friends",
925933
"type": {
926934
"name": null,
927935
"kind": "LIST"
928936
}
929-
}
937+
},
930938
{
931939
"name": "appearsIn",
932940
"type": {
933941
"name": null,
934942
"kind": "LIST"
935943
}
936-
}
944+
},
937945
{
938946
"name": "primaryFunction",
939947
"type": {
@@ -993,15 +1001,15 @@ and we get back:
9931001
"kind": "SCALAR"
9941002
}
9951003
}
996-
}
1004+
},
9971005
{
9981006
"name": "name",
9991007
"type": {
10001008
"name": "String",
10011009
"kind": "SCALAR",
10021010
"ofType": null
10031011
}
1004-
}
1012+
},
10051013
{
10061014
"name": "friends",
10071015
"type": {
@@ -1012,7 +1020,7 @@ and we get back:
10121020
"kind": "INTERFACE"
10131021
}
10141022
}
1015-
}
1023+
},
10161024
{
10171025
"name": "appearsIn",
10181026
"type": {
@@ -1023,7 +1031,7 @@ and we get back:
10231031
"kind": "ENUM"
10241032
}
10251033
}
1026-
}
1034+
},
10271035
{
10281036
"name": "primaryFunction",
10291037
"type": {

0 commit comments

Comments
 (0)