-
-
Notifications
You must be signed in to change notification settings - Fork 174
/
Copy pathpg_graphql.sql
219 lines (194 loc) · 4.34 KB
/
pg_graphql.sql
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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
begin;
comment on schema public is '@graphql({"inflect_names": true})';
create table account(
id serial primary key,
email varchar(255) not null,
priority int,
status text default 'active'
);
create table blog(
id serial primary key,
owner_id integer not null references account(id)
);
comment on table blog is e'@graphql({"totalCount": {"enabled": true}})';
-- Make sure functions still work
create function _echo_email(account)
returns text
language sql
as $$ select $1.email $$;
/*
Literals
*/
select graphql.resolve($$
mutation {
insertIntoAccountCollection(objects: [
{ email: "[email protected]", priority: 1 },
{ email: "[email protected]" }
]) {
affectedCount
records {
id
status
echoEmail
blogCollection {
totalCount
}
}
}
}
$$);
select graphql.resolve($$
mutation {
insertIntoBlogCollection(objects: [{
ownerId: 1
}]) {
records {
id
owner {
id
}
}
}
}
$$);
-- Override a default on status with null
select graphql.resolve($$
mutation {
insertIntoAccountCollection(objects: [
{ email: "[email protected]", status: null },
]) {
affectedCount
records {
email
status
}
}
}
$$);
/*
Variables
*/
select graphql.resolve($$
mutation newAccount($emailAddress: String) {
xyz: insertIntoAccountCollection(objects: [
{ email: $emailAddress },
{ email: "[email protected]" }
]) {
affectedCount
records {
id
email
}
}
}
$$,
variables := '{"emailAddress": "[email protected]"}'::jsonb
);
-- Variable override of default with null results in null
select graphql.resolve($$
mutation newAccount($status: String) {
xyz: insertIntoAccountCollection(objects: [
{ email: "[email protected]", status: $status}
]) {
affectedCount
records {
email
status
}
}
}
$$,
variables := '{"status": null}'::jsonb
);
-- Skipping variable override of default results in default
select graphql.resolve($$
mutation newAccount($status: String) {
xyz: insertIntoAccountCollection(objects: [
{ email: "[email protected]", status: $status},
]) {
affectedCount
records {
email
status
}
}
}
$$,
variables := '{}'::jsonb
);
select graphql.resolve($$
mutation newAccount($acc: AccountInsertInput!) {
insertIntoAccountCollection(objects: [$acc]) {
affectedCount
records {
id
email
}
}
}
$$,
variables := '{"acc": {"email": "[email protected]"}}'::jsonb
);
select graphql.resolve($$
mutation newAccounts($acc: [AccountInsertInput!]!) {
insertIntoAccountCollection(objects: $accs) {
affectedCount
records {
id
email
}
}
}
$$,
variables := '{"accs": [{"email": "[email protected]"}]}'::jsonb
);
-- Single object coerces to a list
select graphql.resolve($$
mutation {
insertIntoBlogCollection(objects: {ownerId: 1}) {
affectedCount
}
}
$$);
/*
Errors
*/
-- Field does not exist
select graphql.resolve($$
mutation createAccount($acc: AccountInsertInput) {
insertIntoAccountCollection(objects: [$acc]) {
affectedCount
records {
id
email
}
}
}
$$,
variables := '{"acc": {"doesNotExist": "other"}}'::jsonb
);
-- Wrong input type (list of string, not list of object)
select graphql.resolve($$
mutation {
insertIntoBlogCollection(objects: ["not an object"]) {
affectedCount
}
}
$$);
-- objects argument is missing
select graphql.resolve($$
mutation {
insertIntoBlogCollection {
affectedCount
}
}
$$);
-- Empty call
select graphql.resolve($$
mutation {
insertIntoBlogCollection(objects: []) {
affectedCount
}
}
$$);
rollback;