-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathgraphQLUpdateType.ts
138 lines (106 loc) · 5.36 KB
/
graphQLUpdateType.ts
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
import { GraphQLInputObjectType, GraphQLList, GraphQLEnumType, GraphQLNonNull, GraphQLScalarType, GraphQLInt, GraphQLObjectType, GraphQLInputFieldConfigMap, GraphQLInputType, Thunk, GraphQLBoolean } from 'graphql';
import { cache, setSuffix, getUnresolvedFieldsTypes, typesCache } from './common';
export const OVERWRITE = "_OVERWRITE";
export const OVERWRITE_DESCRIPTION = "If set to true, the object would be overwriten entirely, including fields that are not specified. Non-null validation rules will apply. Once set to true, any child object will overwriten invariably of the value set to this field.";
export const FICTIVE_INC = "_FICTIVE_INC";
export const FICTIVE_INC_DESCRIPTION = "IGNORE. Due to limitations of the package, objects with no incrementable fields cannot be ommited. All input object types must have at least one field";
export function getGraphQLUpdateType(type: GraphQLObjectType, ...excludedFields: string[]): GraphQLInputObjectType {
const updateTypeName = setSuffix(type.name, 'Type', 'UpdateType');
return cache(typesCache, updateTypeName, () => new GraphQLInputObjectType({
name: updateTypeName,
fields: getUpdateFields(type, ...excludedFields)
}));
}
function getUpdateFields(graphQLType: GraphQLObjectType, ...excludedFields: string[]): () => GraphQLInputFieldConfigMap {
return () => ({
setOnInsert: { type: getGraphQLSetOnInsertType(graphQLType, ...excludedFields) },
set: { type: getGraphQLSetType(graphQLType, ...excludedFields) },
inc: { type: getGraphQLIncType(graphQLType, ...excludedFields) }
});
}
export function getGraphQLSetOnInsertType(
type: GraphQLScalarType | GraphQLEnumType | GraphQLNonNull<any> | GraphQLObjectType | GraphQLList<any>,
...excludedFields: string[]): GraphQLInputType {
if (type instanceof GraphQLScalarType ||
type instanceof GraphQLEnumType) {
return type;
}
if (type instanceof GraphQLNonNull) {
return getGraphQLSetOnInsertType(type.ofType);
}
if (type instanceof GraphQLList) {
return new GraphQLList(getGraphQLSetOnInsertType(type.ofType));
}
const inputTypeName = setSuffix(type.name, 'Type', 'SetOnInsertType');
return cache(typesCache, inputTypeName, () => new GraphQLInputObjectType({
name: inputTypeName,
fields: getUnresolvedFieldsTypes(type, getGraphQLSetOnInsertType, ...excludedFields)
}));
}
export function getGraphQLSetType(type: GraphQLObjectType, ...excludedFields: string[]): GraphQLInputObjectType {
const inputTypeName = setSuffix(type.name, 'Type', 'SetType');
return cache(typesCache, inputTypeName, () => new GraphQLInputObjectType({
name: inputTypeName,
fields: getUnresolvedFieldsTypes(type, (_, ...excluded) => getGraphQLSetObjectType(_ as any, false, ...excluded), ...excludedFields)
}));
}
function getGraphQLSetObjectType(
type: GraphQLScalarType | GraphQLEnumType | GraphQLNonNull<any> | GraphQLObjectType | GraphQLList<any>,
isInList: boolean,
...excludedFields: string[]): GraphQLInputType {
if (type instanceof GraphQLScalarType ||
type instanceof GraphQLEnumType) {
return type;
}
if (type instanceof GraphQLNonNull) {
return getGraphQLSetObjectType(type.ofType, isInList);
}
if (type instanceof GraphQLList) {
return new GraphQLList(getGraphQLSetObjectType(type.ofType, true));
}
const inputTypeName = setSuffix(type.name, 'Type', isInList ? 'SetListObjectType' : 'SetObjectType');
return cache(typesCache, inputTypeName, () => new GraphQLInputObjectType({
name: inputTypeName,
fields: getGraphQLSetObjectTypeFields(type, isInList, ...excludedFields)
}));
}
function getGraphQLSetObjectTypeFields(type: GraphQLObjectType, isInList: boolean, ...excludedFields: string[]): Thunk<GraphQLInputFieldConfigMap> {
return () => {
const fields = getUnresolvedFieldsTypes(type, (_, ...excluded) => getGraphQLSetObjectType(_ as any, isInList, ...excluded), ...excludedFields)();
if (!isInList) {
fields[OVERWRITE] = { type: GraphQLBoolean, description: OVERWRITE_DESCRIPTION }
}
return fields;
};
}
export function getGraphQLIncType(
type: GraphQLScalarType | GraphQLEnumType | GraphQLNonNull<any> | GraphQLObjectType | GraphQLList<any>,
...excludedFields: string[]): GraphQLInputType {
if (type instanceof GraphQLScalarType ||
type instanceof GraphQLEnumType) {
if (["Int", "Float"].includes(type.name)) {
return type;
}
return undefined;
}
if (type instanceof GraphQLNonNull) {
return getGraphQLIncType(type.ofType);
}
if (type instanceof GraphQLList) {
return undefined;
}
const inputTypeName = setSuffix(type.name, 'Type', 'IncType');
return cache(typesCache, inputTypeName, () => new GraphQLInputObjectType({
name: inputTypeName,
fields: getGraphQLIncTypeFields(type, ...excludedFields)
}));
}
function getGraphQLIncTypeFields(type: GraphQLObjectType, ...excludedFields: string[]): () => GraphQLInputFieldConfigMap {
return () => {
const fields = getUnresolvedFieldsTypes(type, getGraphQLIncType, ...excludedFields)();
if (Object.keys(fields).length > 0) {
return fields;
}
return { [FICTIVE_INC]: { type: GraphQLInt, description: FICTIVE_INC_DESCRIPTION } }
}
}