/** @type {import('apollo').ApolloConfig} */ module.exports = { client: { service: { name: 'crmgraphql', url: process.env.NEXT_PUBLIC_URL_CRM_GRAPHQL_DIRECT, localSchemaFile: './graphql/crm.schema.graphql', }, excludes: ['graphql/**/*'], includes: ['pages/**/*', 'process/**/*', 'Components/**/*'], }, };