mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 20:16:39 -04:00
23 lines
375 B
JavaScript
23 lines
375 B
JavaScript
import Telescope from 'meteor/nova:lib';
|
|
import schema from './schema.js';
|
|
import fragments from './fragments.js';
|
|
import mutations from './mutations.js';
|
|
import resolvers from './resolvers.js';
|
|
|
|
const Movies = Telescope.createCollection({
|
|
|
|
collectionName: 'movies',
|
|
|
|
typeName: 'Movie',
|
|
|
|
schema,
|
|
|
|
fragments,
|
|
|
|
resolvers,
|
|
|
|
mutations,
|
|
|
|
});
|
|
|
|
export default Movies;
|