23 lines
533 B
YAML
23 lines
533 B
YAML
overwrite: true
|
|
schema: './graphql/crm.schema.graphql'
|
|
documents: [./**/!(*.schema).graphql]
|
|
generates:
|
|
./graphql/crm.types.ts:
|
|
plugins:
|
|
- typescript
|
|
- typescript-operations
|
|
- typed-document-node
|
|
config:
|
|
onlyOperationTypes: true
|
|
useTypeImports: true
|
|
avoidOptionals:
|
|
field: true
|
|
inputValue: false
|
|
object: true
|
|
defaultValue: true
|
|
scalars:
|
|
UUID: string
|
|
Decimal: number
|
|
DateTime: string
|
|
# exclude: './graphql/crm.schema.graphql'
|