mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 04:16:37 -04:00
14 lines
No EOL
250 B
JavaScript
14 lines
No EOL
250 B
JavaScript
Telescope.graphQL = {
|
|
schemas: [],
|
|
addSchema(schema) {
|
|
this.schemas.push(schema);
|
|
},
|
|
queries: [],
|
|
addQuery(query) {
|
|
this.queries.push(query);
|
|
},
|
|
mutations: [],
|
|
addMutation(mutation) {
|
|
this.mutations.push(mutation);
|
|
},
|
|
}; |