11 lines
219 B
JavaScript
11 lines
219 B
JavaScript
/** @type {import('apollo').ApolloConfig} */
|
|
module.exports = {
|
|
client: {
|
|
service: {
|
|
name: 'crmgraphql',
|
|
localSchemaFile: './graphql/crm.schema.graphql',
|
|
},
|
|
excludes: ['graphql/**/*'],
|
|
},
|
|
};
|