mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 12:36:39 -04:00
14 lines
282 B
JavaScript
14 lines
282 B
JavaScript
import Telescope from 'meteor/nova:lib';
|
|
|
|
export default schema = [`
|
|
${Telescope.graphQL.getCollectionSchemas()}
|
|
${Telescope.graphQL.getAdditionalSchemas()}
|
|
|
|
type Query {
|
|
${Telescope.graphQL.queries.join('\n')}
|
|
}
|
|
|
|
type Mutation {
|
|
${Telescope.graphQL.mutations.join('\n')}
|
|
}
|
|
`];
|