11 lines
251 B
JavaScript
11 lines
251 B
JavaScript
/** @type {import('apollo').ApolloConfig} */
|
|
module.exports = {
|
|
client: {
|
|
service: {
|
|
name: 'crmgraphql',
|
|
localSchemaFile: './services/crm/graphql/schema.graphql',
|
|
},
|
|
excludes: ['services/crm/graphql/schema.graphql'],
|
|
},
|
|
};
|