Entered GQL query is persisted

This commit is contained in:
Andrew Bastin
2019-11-26 15:44:15 -05:00
parent 7fab6f4732
commit ded69f979e

View File

@@ -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)