-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcodegen.yml
More file actions
37 lines (37 loc) · 1.66 KB
/
codegen.yml
File metadata and controls
37 lines (37 loc) · 1.66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
schema: './../be/dist/be/src/schema.gql'
documents:
- ./projects/fuyuko/src/app/gql/*.graphql.ts
generates:
./projects/fuyuko/src/app/generated/generated-graphql-types.gql.ts:
plugins:
- typescript
- add:
content:
"
import {ResponseStatus} from '@fuyuko-common/model/api-response-status.model';
import {NoWorkflowConfiguredType, WorkflowInstanceCreatedType, WorkflowTriggerErrorType} from '@fuyuko-common/model/workflow.model';
import {CustomBulkEditScriptInputType} from '@fuyuko-common/model/custom-bulk-edit.model';
import {
StringValue, StringValueType,
TextValue, TextValueType,
NumberValue, NumberValueType,
DateValue, DateValueType,
CurrencyValue, CurrencyValueType,
VolumeValue, VolumeValueType,
DimensionValue, DimensionValueType,
AreaValue, AreaValueType,
WidthValue, WidthValueType,
LengthValue, LengthValueType,
HeightValue, HeightValueType,
SelectValue, SelectValueType
DoubleSelectValue, DoubleSelectValueType
WeightValue, WeightValueType
} from '@fuyuko-common/model/item.model';
import {
DimensionUnits, VolumeUnits, AreaUnits, WidthUnits, HeightUnits, WeightUnits, CountryCurrencyUnits
} from '@fuyuko-common/model/unit.model';
"
- typescript-operations
config:
scalars:
ResponseStatus: ResponseStatus