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