Entered GQL query is persisted
This commit is contained in:
parent
7fab6f4732
commit
ded69f979e
1 changed files with 8 additions and 1 deletions
|
|
@ -287,7 +287,6 @@ export default {
|
|||
mutationFields: [],
|
||||
subscriptionFields: [],
|
||||
gqlTypes: [],
|
||||
gqlQueryString: "",
|
||||
responseString: "",
|
||||
copyButton: '<i class="material-icons">file_copy</i>',
|
||||
downloadButton: '<i class="material-icons">get_app</i>',
|
||||
|
|
@ -313,6 +312,14 @@ export default {
|
|||
this.$store.commit("setGQLState", { value, attribute: "headers" });
|
||||
}
|
||||
},
|
||||
gqlQueryString: {
|
||||
get() {
|
||||
return this.$store.state.gql.query;
|
||||
},
|
||||
set(value) {
|
||||
this.$store.commit("setGQLState", { value, attribute: "query" });
|
||||
}
|
||||
},
|
||||
headerString() {
|
||||
const result = this.headers
|
||||
.filter(({ key }) => !!key)
|
||||
|
|
|
|||
Loading…
Reference in a new issue