mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 20:16:39 -04:00
13 lines
234 B
JavaScript
13 lines
234 B
JavaScript
import Telescope from 'meteor/nova:lib';
|
|
|
|
export default schema = [`
|
|
${Telescope.graphQL.schemas.join('\n')}
|
|
|
|
type Query {
|
|
${Telescope.graphQL.queries.join('\n')}
|
|
}
|
|
|
|
type Mutation {
|
|
${Telescope.graphQL.mutations.join('\n')}
|
|
}
|
|
`];
|