Fixed default query

This commit is contained in:
Dmitry Yankowski
2020-02-29 11:51:38 -05:00
parent e56fa732fa
commit 57950e2637

View File

@@ -23,8 +23,8 @@ export default () => ({
headers: [],
schema: "",
variablesJSONString: '{ "id": "1" }',
query: `query charcter {
character(id: 1) {
query: `query charcter($id: ID) {
character(id: $id) {
id
name
}