EvoCalculator.Client2/apps/web/apollo.config.js
2023-01-11 11:26:08 +03:00

12 lines
307 B
JavaScript

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