/** @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', ], }, };