fix syntax

This commit is contained in:
Grahame Grieve 2019-06-19 22:30:23 +10:00
parent d43c0e0da5
commit 72d923b2e8
1 changed files with 4 additions and 4 deletions

View File

@ -3,7 +3,7 @@
"instance-tests" : { "instance-tests" : {
"simple" : { "simple" : {
"description" : "Just a simple test of the basic graphQL engine: a simple query on a known patient (example, from the spec)", "description" : "Just a simple test of the basic graphQL engine: a simple query on a known patient (example, from the spec)",
"url" : "/Patient/example/$graphql?query={identifier{system,value}active,name{text,given,family}}" "url" : "/Patient/example/$graphql?query={identifier{system,value}active,name{text,given,family}}",
"output" : { "output" : {
"data" : { "data" : {
"active" : true, "active" : true,
@ -35,13 +35,13 @@
} }
] ]
} }
}, }
} }
}, },
"root-tests" : { "root-tests" : {
"simple" : { "simple" : {
"description" : "Just a simple test of the basic graphQL engine: a simple query on a known patient (example, from the spec)", "description" : "Just a simple test of the basic graphQL engine: a simple query on a known patient (example, from the spec)",
"url" : "/$graphql?query={Patient(_id:example){identifier{system,value}active,name{text,given,family}}}" "url" : "/$graphql?query={Patient(_id:example){identifier{system,value}active,name{text,given,family}}}",
"output" : { "output" : {
"data" : { "data" : {
"Patient" : { "Patient" : {
@ -75,7 +75,7 @@
] ]
} }
} }
}, }
} }
} }
} }