EvoCalculator.Client2/apps/web/apollo.config.js
2023-02-06 12:19:39 +03:00

17 lines
419 B
JavaScript

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