17 lines
419 B
JavaScript
17 lines
419 B
JavaScript
/** @type {import('apollo').ApolloConfig} */
|
|
module.exports = {
|
|
client: {
|
|
service: {
|
|
name: 'crmgraphql',
|
|
localSchemaFile: `${__dirname}/graphql/crm.schema.graphql`,
|
|
},
|
|
excludes: ['**/graphql/**/*.schema.graphql', '**/graphql/**/*.types.graphql'],
|
|
includes: [
|
|
'**/pages/**/*',
|
|
'**/process/**/*',
|
|
'**/Components/**/*',
|
|
'**/graphql/**/*.query.graphql',
|
|
],
|
|
},
|
|
};
|