Fixed default query
This commit is contained in:
parent
e56fa732fa
commit
57950e2637
1 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue