graphile-utils 5.0.0-beta.9 → 5.0.0-rc.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (45) hide show
  1. package/CHANGELOG.md +1064 -1
  2. package/README.md +87 -72
  3. package/dist/exportable.d.ts +4 -1
  4. package/dist/exportable.d.ts.map +1 -1
  5. package/dist/exportable.js +15 -4
  6. package/dist/exportable.js.map +1 -1
  7. package/dist/gql.js +1 -2
  8. package/dist/gql.js.map +1 -1
  9. package/dist/index.d.ts +42 -7
  10. package/dist/index.d.ts.map +1 -1
  11. package/dist/index.js +11 -1
  12. package/dist/index.js.map +1 -1
  13. package/dist/makeAddInflectorsPlugin.js +2 -3
  14. package/dist/makeAddInflectorsPlugin.js.map +1 -1
  15. package/dist/makeAddPgTableConditionPlugin.d.ts +32 -6
  16. package/dist/makeAddPgTableConditionPlugin.d.ts.map +1 -1
  17. package/dist/makeAddPgTableConditionPlugin.js +28 -11
  18. package/dist/makeAddPgTableConditionPlugin.js.map +1 -1
  19. package/dist/makeAddPgTableOrderByPlugin.d.ts +15 -10
  20. package/dist/makeAddPgTableOrderByPlugin.d.ts.map +1 -1
  21. package/dist/makeAddPgTableOrderByPlugin.js +43 -35
  22. package/dist/makeAddPgTableOrderByPlugin.js.map +1 -1
  23. package/dist/makeChangeNullabilityPlugin.d.ts +3 -1
  24. package/dist/makeChangeNullabilityPlugin.d.ts.map +1 -1
  25. package/dist/makeChangeNullabilityPlugin.js +98 -18
  26. package/dist/makeChangeNullabilityPlugin.js.map +1 -1
  27. package/dist/makeExtendSchemaPlugin.d.ts +55 -26
  28. package/dist/makeExtendSchemaPlugin.d.ts.map +1 -1
  29. package/dist/makeExtendSchemaPlugin.js +402 -105
  30. package/dist/makeExtendSchemaPlugin.js.map +1 -1
  31. package/dist/makePgSmartTagsPlugin.d.ts +16 -3
  32. package/dist/makePgSmartTagsPlugin.d.ts.map +1 -1
  33. package/dist/makePgSmartTagsPlugin.js +24 -18
  34. package/dist/makePgSmartTagsPlugin.js.map +1 -1
  35. package/dist/makeProcessSchemaPlugin.d.ts +3 -1
  36. package/dist/makeProcessSchemaPlugin.d.ts.map +1 -1
  37. package/dist/makeProcessSchemaPlugin.js +4 -2
  38. package/dist/makeProcessSchemaPlugin.js.map +1 -1
  39. package/dist/makeWrapPlansPlugin.d.ts +6 -3
  40. package/dist/makeWrapPlansPlugin.d.ts.map +1 -1
  41. package/dist/makeWrapPlansPlugin.js +40 -18
  42. package/dist/makeWrapPlansPlugin.js.map +1 -1
  43. package/dist/parseIdentifierParts.js +1 -2
  44. package/dist/parseIdentifierParts.js.map +1 -1
  45. package/package.json +29 -23
package/CHANGELOG.md CHANGED
@@ -1,5 +1,1069 @@
1
1
  # graphile-utils
2
2
 
3
+ ## 5.0.0-rc.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [#2736](https://github.com/graphile/crystal/pull/2736)
8
+ [`3fb7111`](https://github.com/graphile/crystal/commit/3fb71118462ba2d97f045023c715e4b0a447766a)
9
+ Thanks [@benjie](https://github.com/benjie)! - `wrapPlans()` now automatically
10
+ applies `fieldArgs` when you call the underlying `plan()`, so your wrapper
11
+ applies _after_ field args have been applied. This helps address invalid plan
12
+ heirarchy issues due to side effects your plan wrappers may wish to add and
13
+ similar. Opt out via
14
+ `{ autoApplyFieldArgs: false, plan(plan, $parent, fieldArgs) { ... } }`.
15
+
16
+ - [#2788](https://github.com/graphile/crystal/pull/2788)
17
+ [`8a852d2`](https://github.com/graphile/crystal/commit/8a852d21c80c7b06f2b3dd9fa01727e2d8a5522b)
18
+ Thanks [@benjie](https://github.com/benjie)! - Fix defining directives in
19
+ `extendSchema()` sometimes throwing
20
+ `Must not call build.getTypeByName before 'init' phase is complete`
21
+
22
+ - [`8a5a7c5`](https://github.com/graphile/crystal/commit/8a5a7c536fc4b9b702600c5cc3d413724670c327)
23
+ Thanks [@benjie](https://github.com/benjie)! - Bump to release candidate
24
+
25
+ - Updated dependencies
26
+ [[`9797500`](https://github.com/graphile/crystal/commit/9797500071f4bbd0cc1b73c74e7f402cb1bb687f),
27
+ [`be318e6`](https://github.com/graphile/crystal/commit/be318e666c18ee06e62291d3e7ed7d0d1345eb3b),
28
+ [`abb623d`](https://github.com/graphile/crystal/commit/abb623d59e517c0949f0fef5440b817103c685bf),
29
+ [`92781a1`](https://github.com/graphile/crystal/commit/92781a183b3548902ed92b152ae915d597d62b97),
30
+ [`930240a`](https://github.com/graphile/crystal/commit/930240a4a7d3373f5691d495df752bb8fedac2af),
31
+ [`7b86454`](https://github.com/graphile/crystal/commit/7b864546fa81803ce0e573a2efa2e7f0905b2040),
32
+ [`42a0785`](https://github.com/graphile/crystal/commit/42a0785ddabf58812a22d764eeddfde9362974e5),
33
+ [`d196d60`](https://github.com/graphile/crystal/commit/d196d60664fbc9ffd410c11645db27554b22ac0b),
34
+ [`982c1a5`](https://github.com/graphile/crystal/commit/982c1a566da21706f85c7bfb0adda210e251e6e1),
35
+ [`6a4e3b9`](https://github.com/graphile/crystal/commit/6a4e3b9ec182f7d066600aee0f8cc21d451b0ae2),
36
+ [`eb39702`](https://github.com/graphile/crystal/commit/eb3970215a61a78e18359e6ebb473c2cb3991bd7),
37
+ [`c6cbe61`](https://github.com/graphile/crystal/commit/c6cbe6175b0f1f034db59d42cbe594e7d329aba6),
38
+ [`d4ac603`](https://github.com/graphile/crystal/commit/d4ac603da7df6ea01aaa483a7cb29b1e514a90cd),
39
+ [`8a5a7c5`](https://github.com/graphile/crystal/commit/8a5a7c536fc4b9b702600c5cc3d413724670c327),
40
+ [`ea0135f`](https://github.com/graphile/crystal/commit/ea0135fac3f43850b65828f2ff2b01a34cfdff15),
41
+ [`91b8376`](https://github.com/graphile/crystal/commit/91b83765f9ded133031c1de53d6b3926c8011bf5),
42
+ [`b6821f5`](https://github.com/graphile/crystal/commit/b6821f5f4dc13abd0b605be7396c1b3c36e66177)]:
43
+ - @dataplan/pg@1.0.0-rc.1
44
+ - grafast@1.0.0-rc.1
45
+ - graphile-build-pg@5.0.0-rc.1
46
+ - graphile-build@5.0.0-rc.1
47
+ - graphile-config@1.0.0-rc.1
48
+ - tamedevil@0.1.0-rc.1
49
+
50
+ ## 5.0.0-beta.45
51
+
52
+ ### Patch Changes
53
+
54
+ - [#2720](https://github.com/graphile/crystal/pull/2720)
55
+ [`2814c63`](https://github.com/graphile/crystal/commit/2814c639983437e9883de040c64cceda433a2687)
56
+ Thanks [@benjie](https://github.com/benjie)! - Ensure types that implement an
57
+ interface defined in extendSchema are added to the schema.
58
+
59
+ - [#2730](https://github.com/graphile/crystal/pull/2730)
60
+ [`4c3cf22`](https://github.com/graphile/crystal/commit/4c3cf22592f44cb28e399434474ca5fcef0e1a3b)
61
+ Thanks [@benjie](https://github.com/benjie)! - Update `graphql` version range
62
+
63
+ - [#2712](https://github.com/graphile/crystal/pull/2712)
64
+ [`32ba479`](https://github.com/graphile/crystal/commit/32ba479160eb5b9ceb5dbb10161a37b62a20f3aa)
65
+ Thanks [@benjie](https://github.com/benjie)! - Improve errors around
66
+ changeNullability() plugin
67
+
68
+ - Updated dependencies
69
+ [[`4c3cf22`](https://github.com/graphile/crystal/commit/4c3cf22592f44cb28e399434474ca5fcef0e1a3b),
70
+ [`7ce4d41`](https://github.com/graphile/crystal/commit/7ce4d41f9befce7c26e52cbfd7bf98febc764968),
71
+ [`0465b4a`](https://github.com/graphile/crystal/commit/0465b4a038cc8d7ef4a857fb929a3c3b0104441c),
72
+ [`71e0af2`](https://github.com/graphile/crystal/commit/71e0af265c90e9d9d0dc764cc552f7470e860251),
73
+ [`a0a6082`](https://github.com/graphile/crystal/commit/a0a6082173247caf8f76df925a9d8e7926792663),
74
+ [`ab96e5f`](https://github.com/graphile/crystal/commit/ab96e5f58aa3315db9b85b452b048f600cb8353e),
75
+ [`278b4d3`](https://github.com/graphile/crystal/commit/278b4d398eb7db1935caba4155e1d1727284a370),
76
+ [`eaa771b`](https://github.com/graphile/crystal/commit/eaa771b34dbdac1c4d701faa8fb5947e9cf1d1be),
77
+ [`b539002`](https://github.com/graphile/crystal/commit/b539002a627bf3d595ffb994e871dfc2eb5c2b64),
78
+ [`e28e4d9`](https://github.com/graphile/crystal/commit/e28e4d9b651a8ee40582006de34dd011309ba4e1),
79
+ [`020b579`](https://github.com/graphile/crystal/commit/020b5791b57282d6fcbd42d0cbfd8be9e95cee47),
80
+ [`e790f7a`](https://github.com/graphile/crystal/commit/e790f7ac7933c8ed01465688e20c2af76d2a79e8),
81
+ [`c8412aa`](https://github.com/graphile/crystal/commit/c8412aa73875aafe64317cc4c655654a86486047),
82
+ [`13eb44b`](https://github.com/graphile/crystal/commit/13eb44b0c8fb56252f1ecb3aea99d8f0fe10e3fa),
83
+ [`d0c15cc`](https://github.com/graphile/crystal/commit/d0c15ccc32ed8dec19ff068f851529132dc93302),
84
+ [`74e15d5`](https://github.com/graphile/crystal/commit/74e15d5bf2c6aada713711722aa31fb8b2da232d),
85
+ [`3488ac0`](https://github.com/graphile/crystal/commit/3488ac0e0e3ffe0dd2a072858390df51e0ebaf39),
86
+ [`b20a63f`](https://github.com/graphile/crystal/commit/b20a63f5ee77734ce2e3aa71f9f4de3c00e27e55),
87
+ [`bffbb77`](https://github.com/graphile/crystal/commit/bffbb775ea76d1add85422866a6b7e904d2311af),
88
+ [`d414491`](https://github.com/graphile/crystal/commit/d41449156d4983466fee4f34e3e361df4d561b3e),
89
+ [`c48ca48`](https://github.com/graphile/crystal/commit/c48ca4840227b8e5e6a1dc198a189cfd911a602b),
90
+ [`05f3e44`](https://github.com/graphile/crystal/commit/05f3e449a771aefcd9a81c6275a376ad87e3d316),
91
+ [`81c62bb`](https://github.com/graphile/crystal/commit/81c62bb9f9b05f7ff1251695712e1777de7315f9)]:
92
+ - graphile-build-pg@5.0.0-beta.47
93
+ - graphile-build@5.0.0-beta.39
94
+ - @dataplan/pg@0.0.1-beta.39
95
+ - grafast@0.1.1-beta.27
96
+
97
+ ## 5.0.0-beta.44
98
+
99
+ ### Patch Changes
100
+
101
+ - [#2692](https://github.com/graphile/crystal/pull/2692)
102
+ [`3d5c464`](https://github.com/graphile/crystal/commit/3d5c4641df66b431066efd6c74b67ca0d38ba7f4)
103
+ Thanks [@benjie](https://github.com/benjie)! - Allow forbidding certain
104
+ objects/functions from being exported, and raise error as early as possible.
105
+
106
+ - [#2655](https://github.com/graphile/crystal/pull/2655)
107
+ [`5bea9c1`](https://github.com/graphile/crystal/commit/5bea9c14b7b20609eec1593fe3109f8d6c170b44)
108
+ Thanks [@hos](https://github.com/hos)! - Fix handling of empty string in
109
+ `changeNullability()`
110
+
111
+ - [#2678](https://github.com/graphile/crystal/pull/2678)
112
+ [`6dafac1`](https://github.com/graphile/crystal/commit/6dafac162955291e5147c21e57734b44e30acb98)
113
+ Thanks [@benjie](https://github.com/benjie)! - Remove peer dependency
114
+ optionality in an attempt to satisfy pnpm's installation algorithms
115
+
116
+ - [#2692](https://github.com/graphile/crystal/pull/2692)
117
+ [`aa8fb3d`](https://github.com/graphile/crystal/commit/aa8fb3dbd23b0c3b6b8039922cb4ab7293b51844)
118
+ Thanks [@benjie](https://github.com/benjie)! - Forbid export of 'build', this
119
+ has required a slight degradation of the
120
+ makeAddPgTableConditionPlugin/addPgTableCondition signature for people using
121
+ the legacy signature - namely the entire build object is no longer available
122
+ in the callback that is the fourth argument. (Only have 3 arguments to your
123
+ call? You're not impacted!) In the unlikely event this causes you any issues,
124
+ your best bet is to move to the `apply()` approach (only use the 3 documented
125
+ arguments), but we can also potentially expand the parts of build that are
126
+ made available.
127
+ - Updated dependencies
128
+ [[`5dbb9e8`](https://github.com/graphile/crystal/commit/5dbb9e87850ce8de29ab4fec18c9d06333b642de),
129
+ [`cfd4c3c`](https://github.com/graphile/crystal/commit/cfd4c3cff0ef40ed87a2c700b7719c1ca0e73588),
130
+ [`c3f9c38`](https://github.com/graphile/crystal/commit/c3f9c38cb00ad4553e4bc3c04e16a7c77bd16142),
131
+ [`68a1243`](https://github.com/graphile/crystal/commit/68a1243f104227ebf7d1f3cedcbec49dc3c8e258),
132
+ [`3d5c464`](https://github.com/graphile/crystal/commit/3d5c4641df66b431066efd6c74b67ca0d38ba7f4),
133
+ [`6762c70`](https://github.com/graphile/crystal/commit/6762c7005c56d17c06cebb6857e8d295d86399eb),
134
+ [`05b971e`](https://github.com/graphile/crystal/commit/05b971e2d63cb5c946512bb83e6c255a7d9ec93f),
135
+ [`13513dd`](https://github.com/graphile/crystal/commit/13513ddaea15ad9498a77de7c4e92679498f99ca),
136
+ [`bc2b188`](https://github.com/graphile/crystal/commit/bc2b188a50e00f153dc68df6955399c5917130bd),
137
+ [`87a4c92`](https://github.com/graphile/crystal/commit/87a4c92dc89093a8bd601dcd692910eadf0c4cd3),
138
+ [`703d162`](https://github.com/graphile/crystal/commit/703d162df2cc148ac343c1339b8e7df750aa781d),
139
+ [`c13813e`](https://github.com/graphile/crystal/commit/c13813eecb42c0d9a6703540c022e318e18c5751),
140
+ [`4a9072b`](https://github.com/graphile/crystal/commit/4a9072bfa3d3e86c6013caf2b89a31e87f2bb421),
141
+ [`7766c19`](https://github.com/graphile/crystal/commit/7766c19ecefd3aebc965306db90ba29b3b05200c),
142
+ [`6dafac1`](https://github.com/graphile/crystal/commit/6dafac162955291e5147c21e57734b44e30acb98),
143
+ [`e15f886`](https://github.com/graphile/crystal/commit/e15f886cae1041416b44b74b75426f8d43000dcf),
144
+ [`34efed0`](https://github.com/graphile/crystal/commit/34efed09892d4b6533f40026de4a6b0a8a35035d),
145
+ [`185d449`](https://github.com/graphile/crystal/commit/185d449ed30d29c9134cc898b50a1473ab2910a2),
146
+ [`e2048e2`](https://github.com/graphile/crystal/commit/e2048e260bf99ed946f92d6ea579e08f126ba4d5)]:
147
+ - graphile-build-pg@5.0.0-beta.45
148
+ - @dataplan/pg@0.0.1-beta.37
149
+ - graphile-config@0.0.1-beta.18
150
+ - grafast@0.1.1-beta.26
151
+ - graphile-build@5.0.0-beta.38
152
+ - tamedevil@0.0.0-beta.9
153
+
154
+ ## 5.0.0-beta.43
155
+
156
+ ### Patch Changes
157
+
158
+ - [#2649](https://github.com/graphile/crystal/pull/2649)
159
+ [`8cfd4b3`](https://github.com/graphile/crystal/commit/8cfd4b37057ec54814f2f53f96a42400cbde69ca)
160
+ Thanks [@benjie](https://github.com/benjie)! - Allow setting scope in the new
161
+ `extendSchema()` format on all the GraphQL types, plus object fields and input
162
+ object fields.
163
+ - Updated dependencies
164
+ [[`9e21b2a`](https://github.com/graphile/crystal/commit/9e21b2ac0814c351d68f50b5a121699e088209bd),
165
+ [`2adfd6e`](https://github.com/graphile/crystal/commit/2adfd6efedd1ab6831605526a515c683a7e95c2c),
166
+ [`73f626b`](https://github.com/graphile/crystal/commit/73f626b8065389f226f66a4752112cf6b013855a),
167
+ [`6113518`](https://github.com/graphile/crystal/commit/61135188900c39d0cb6bd2f9c0033f0954cd0e6a)]:
168
+ - graphile-build@5.0.0-beta.37
169
+ - graphile-build-pg@5.0.0-beta.44
170
+ - @dataplan/pg@0.0.1-beta.36
171
+ - grafast@0.1.1-beta.25
172
+
173
+ ## 5.0.0-beta.42
174
+
175
+ ### Patch Changes
176
+
177
+ - [#2559](https://github.com/graphile/crystal/pull/2559)
178
+ [`4c8f028`](https://github.com/graphile/crystal/commit/4c8f028a7e5c4388efbab53ea65e7b3018ab6d47)
179
+ Thanks [@benjie](https://github.com/benjie)! - Remove `make...Plugin`
180
+ prefix/suffix from plugin factories. (Old name is still supported but
181
+ deprecated, this is non-breaking.)
182
+
183
+ - [#2620](https://github.com/graphile/crystal/pull/2620)
184
+ [`c54c6db`](https://github.com/graphile/crystal/commit/c54c6db320b3967ab16784a504770c9b5ef24494)
185
+ Thanks [@benjie](https://github.com/benjie)! - Add experimental `applyScope()`
186
+ method to input objects/enums to provide a `scope` to `.apply(...)` methods
187
+ invoked by the undocumented `applyInput()`. **Documentation help welcome.**
188
+ - Updated dependencies
189
+ [[`4c8f028`](https://github.com/graphile/crystal/commit/4c8f028a7e5c4388efbab53ea65e7b3018ab6d47),
190
+ [`5451c90`](https://github.com/graphile/crystal/commit/5451c9031e341bdae16dc1b7a3b6b19154056701),
191
+ [`c54c6db`](https://github.com/graphile/crystal/commit/c54c6db320b3967ab16784a504770c9b5ef24494),
192
+ [`7147cb0`](https://github.com/graphile/crystal/commit/7147cb07e4d7286bb3b9e949164a2a232d59e28c),
193
+ [`7847c0b`](https://github.com/graphile/crystal/commit/7847c0b09aa6be5526df8ccdb3f429e680a2da03),
194
+ [`9d86063`](https://github.com/graphile/crystal/commit/9d86063aacf2d064c35bd62e2cf58ea687910ac8),
195
+ [`0e6c4e0`](https://github.com/graphile/crystal/commit/0e6c4e062be3ecb79c0ae30c89fad1550a0b5e98),
196
+ [`ad588ec`](https://github.com/graphile/crystal/commit/ad588ecde230359f56800e414b7c5fa1aed14957)]:
197
+ - graphile-build-pg@5.0.0-beta.42
198
+ - @dataplan/pg@0.0.1-beta.35
199
+ - grafast@0.1.1-beta.24
200
+ - graphile-build@5.0.0-beta.36
201
+
202
+ ## 5.0.0-beta.41
203
+
204
+ ### Patch Changes
205
+
206
+ - [#2577](https://github.com/graphile/crystal/pull/2577)
207
+ [`0c6b1f1`](https://github.com/graphile/crystal/commit/0c6b1f1e188f6e2913832adfed9ca76dfdc25c47)
208
+ Thanks [@benjie](https://github.com/benjie)! - Update dependencies
209
+
210
+ - Updated dependencies
211
+ [[`0c6b1f1`](https://github.com/graphile/crystal/commit/0c6b1f1e188f6e2913832adfed9ca76dfdc25c47),
212
+ [`e0cdabe`](https://github.com/graphile/crystal/commit/e0cdabe25c8894da550546c93bc03b895585544c)]:
213
+ - graphile-build-pg@5.0.0-beta.41
214
+ - graphile-build@5.0.0-beta.35
215
+ - graphile-config@0.0.1-beta.17
216
+ - @dataplan/pg@0.0.1-beta.34
217
+ - grafast@0.1.1-beta.23
218
+
219
+ ## 5.0.0-beta.40
220
+
221
+ ### Patch Changes
222
+
223
+ - Updated dependencies
224
+ [[`5c802ea6819361eed36b75f246ae0adb35b14669`](https://github.com/graphile/crystal/commit/5c802ea6819361eed36b75f246ae0adb35b14669)]:
225
+ - graphile-build-pg@5.0.0-beta.40
226
+ - @dataplan/pg@0.0.1-beta.33
227
+ - graphile-build@5.0.0-beta.34
228
+
229
+ ## 5.0.0-beta.39
230
+
231
+ ### Patch Changes
232
+
233
+ - [#2482](https://github.com/graphile/crystal/pull/2482)
234
+ [`459e1869a2ec58925b2bac5458af487c52a8ca37`](https://github.com/graphile/crystal/commit/459e1869a2ec58925b2bac5458af487c52a8ca37)
235
+ Thanks [@benjie](https://github.com/benjie)! - Minimum version of Node.js
236
+ bumped to Node 22 (the latest LTS).
237
+
238
+ - [#2527](https://github.com/graphile/crystal/pull/2527)
239
+ [`576fb8bad56cb940ab444574d752e914d462018a`](https://github.com/graphile/crystal/commit/576fb8bad56cb940ab444574d752e914d462018a)
240
+ Thanks [@{](https://github.com/{)! - In order to make the libraries more type
241
+ safe, `makeGrafastSchema` (from `grafast`) and `makeExtendSchemaPlugin` (from
242
+ `postgraphile/utils`) have deprecated the `typeDefs`/`plans` pattern since
243
+ `plans` (like `resolvers` in the traditional format) ended up being a
244
+ mish-mash of lots of different types and `__`-prefixed fields for special
245
+ cases.
246
+
247
+ Instead the configuration should be split into `typeDefs` with `objects`,
248
+ `interfaces`, `unions`, `inputObjects`, `scalars` and `enums`; and object and
249
+ input object fields should be specified via the `plans` entry within the type
250
+ to avoid conflicts with `resolveType`/`isTypeOf`/`planType`/`scope` and
251
+ similar type-level (rather than field-level) properties. Similarly, enum
252
+ values should be added under a `values` property. This also means these
253
+ type-level fields no longer have the `__` prefix.
254
+
255
+ Migration is quite straightforward:
256
+ 1. **Add new top-level properties**. Add `objects`, `interfaces`, `unions`,
257
+ `inputObjects`, `scalars`, and `enums` as top level properties alongside
258
+ `typeDefs` and `plans`. Each should be an empty object. You can skip any
259
+ where you're not defining types of that kind.
260
+ 1. **Split definitions based on type kind**. For each type defined in `plans`
261
+ move it into the appropriate new property based on the keyword used to
262
+ define the type in the `typeDefs` (`type` → `objects`, `interface`
263
+ → `interfaces`, `union` → `unions`, `input object` →
264
+ `inputObjects`, `scalar` → `scalars`, `enum` → `enums`).
265
+ 1. **Move field plans into nested `plans: {...}` object**. For each type
266
+ defined in the new `objects` and `inputObjects` maps: create a
267
+ `plans: { ... }` entry inside the type and move all fields (anything not
268
+ prefixed with `__`) inside this new (nested) property.
269
+ 1. **Move enum values into nested `values: {...}` object**. For each type
270
+ defined in the new `enums` map: create a `values: { ... }` entry inside the
271
+ type and move all values (anything not prefixed with `__`) inside this new
272
+ (nested) property.
273
+ 1. **Remove `__` prefixes**. For each type across
274
+ `objects`/`interfaces`/`unions`/`interfaceObjects`/`scalars` and `enums`:
275
+ remove the `__` prefix from any methods/properties.
276
+
277
+ Example:
278
+
279
+ ```diff
280
+ typeDefs: ...,
281
+ -plans: {
282
+ +objects: {
283
+
284
+ - __isTypeOf(v) {
285
+ + isTypeOf(v) {
286
+ return v.username != null;
287
+ },
288
+ + plans: {
289
+ fieldName($source, fieldArgs) {
290
+ // ...
291
+ },
292
+ + },
293
+ },
294
+ +},
295
+ +interfaces: {,
296
+ MyInterface: {
297
+ - __resolveType($specifier) {
298
+ + resolveType($specifier) {
299
+ // ...
300
+ }
301
+ }
302
+ +},
303
+ +enums: {
304
+ MyEnum: {
305
+ + values: {
306
+ ONE: {value: 1},
307
+ TWO: {value: 2},
308
+ THREE: {value: 3},
309
+ + }
310
+ }
311
+ },
312
+ ```
313
+
314
+ Other changes:
315
+ - `ObjectPlans`/`GrafastPlans`/`FieldPlans`/`InputObjectPlans`/`ScalarPlans`
316
+ all changed to signular
317
+ - `InterfaceOrUnionPlans` split to `InterfacePlan`/`UnionPlan` (identical
318
+ currently)
319
+ - Shape of `ObjectPlan`/`InterfacePlan`/`UnionPlan` has changed;
320
+ `DeprecatedObjectPlan`/etc exist for backcompat
321
+ - `FieldArgs` can now accept an input shape indicating the args and their
322
+ types
323
+ - `FieldPlanResolver<TArgs, TParentStep, TResultStep>` has switched the order
324
+ of the first two generic parameters:
325
+ `FieldPlanResolver<TParentStep, TArgs, TResultStep>` - this is to reflect
326
+ the order of the arguments to the function. Also null has been removed from
327
+ the generics.
328
+ - Various generics (including `GrafastFieldConfig`) that used to take a
329
+ GraphQL type instance as a generic parameter no longer do - you need to use
330
+ external code generation because TypeScript cannot handle the dynamic
331
+ creation.
332
+ - `GrafastFieldConfig` last two generics swapped order.
333
+ - `GrafastArgumentConfig` generics completely changed
334
+
335
+ - Updated dependencies
336
+ [[`0e36cb9077c76710d2e407830323f86c5038126e`](https://github.com/graphile/crystal/commit/0e36cb9077c76710d2e407830323f86c5038126e),
337
+ [`c0c3f48fa9f60cb9a4436ea135979b779ecc71ec`](https://github.com/graphile/crystal/commit/c0c3f48fa9f60cb9a4436ea135979b779ecc71ec),
338
+ [`cef9a37f846b4af105ac20960530d65c9f44afa9`](https://github.com/graphile/crystal/commit/cef9a37f846b4af105ac20960530d65c9f44afa9),
339
+ [`56ce94a847c6a4094643665cbf5d3712f56140b6`](https://github.com/graphile/crystal/commit/56ce94a847c6a4094643665cbf5d3712f56140b6),
340
+ [`070467c4ea693a2516fc8006bebb88b1ab96fb26`](https://github.com/graphile/crystal/commit/070467c4ea693a2516fc8006bebb88b1ab96fb26),
341
+ [`192a27e08763ea26607344a2ea6c7f5c595cc2a3`](https://github.com/graphile/crystal/commit/192a27e08763ea26607344a2ea6c7f5c595cc2a3),
342
+ [`142e39f26ce329f09bee0b5427f1ddc5103e610e`](https://github.com/graphile/crystal/commit/142e39f26ce329f09bee0b5427f1ddc5103e610e),
343
+ [`6ef6abce15936a896156d5316020df55cf7d18e3`](https://github.com/graphile/crystal/commit/6ef6abce15936a896156d5316020df55cf7d18e3),
344
+ [`0239c2d519300a72f545e0db7c371adae4ade2a9`](https://github.com/graphile/crystal/commit/0239c2d519300a72f545e0db7c371adae4ade2a9),
345
+ [`09d95319be3e25e023dfbab9d1542dfe06f65355`](https://github.com/graphile/crystal/commit/09d95319be3e25e023dfbab9d1542dfe06f65355),
346
+ [`0ea439d33ccef7f8d01ac5f54893ab2bbf1cbd4d`](https://github.com/graphile/crystal/commit/0ea439d33ccef7f8d01ac5f54893ab2bbf1cbd4d),
347
+ [`8034614d1078b1bd177b6e7fcc949420614e3245`](https://github.com/graphile/crystal/commit/8034614d1078b1bd177b6e7fcc949420614e3245),
348
+ [`a830770e775a65ce1d09fa767f38e84f5c0e5139`](https://github.com/graphile/crystal/commit/a830770e775a65ce1d09fa767f38e84f5c0e5139),
349
+ [`459e1869a2ec58925b2bac5458af487c52a8ca37`](https://github.com/graphile/crystal/commit/459e1869a2ec58925b2bac5458af487c52a8ca37),
350
+ [`c350e49e372ec12a4cbf04fb6b4260e01832d12b`](https://github.com/graphile/crystal/commit/c350e49e372ec12a4cbf04fb6b4260e01832d12b),
351
+ [`3176ea3e57d626b39613a73117ef97627370ec83`](https://github.com/graphile/crystal/commit/3176ea3e57d626b39613a73117ef97627370ec83),
352
+ [`46a42f5547c041289aa98657ebc6815f4b6c8539`](https://github.com/graphile/crystal/commit/46a42f5547c041289aa98657ebc6815f4b6c8539),
353
+ [`be3f174c5aae8fe78a240e1bc4e1de7f18644b43`](https://github.com/graphile/crystal/commit/be3f174c5aae8fe78a240e1bc4e1de7f18644b43),
354
+ [`c43ed67b9d3acbadb172ee88ba9c2a4d32528a25`](https://github.com/graphile/crystal/commit/c43ed67b9d3acbadb172ee88ba9c2a4d32528a25),
355
+ [`576fb8bad56cb940ab444574d752e914d462018a`](https://github.com/graphile/crystal/commit/576fb8bad56cb940ab444574d752e914d462018a),
356
+ [`9f459101fa4428aa4bac71531e75f99e33da8e17`](https://github.com/graphile/crystal/commit/9f459101fa4428aa4bac71531e75f99e33da8e17),
357
+ [`921665df8babe2651ab3b5886ab68bb518f2125b`](https://github.com/graphile/crystal/commit/921665df8babe2651ab3b5886ab68bb518f2125b),
358
+ [`78bb1a615754d772a5fda000e96073c91fa9eba7`](https://github.com/graphile/crystal/commit/78bb1a615754d772a5fda000e96073c91fa9eba7),
359
+ [`ab0bcda5fc3c136eea09493a7d9ed4542975858e`](https://github.com/graphile/crystal/commit/ab0bcda5fc3c136eea09493a7d9ed4542975858e),
360
+ [`455f4811d37ad8fff91183c7a88621bcf9d79acf`](https://github.com/graphile/crystal/commit/455f4811d37ad8fff91183c7a88621bcf9d79acf),
361
+ [`45adaff886e7cd72b864150927be6c0cb4a7dfe8`](https://github.com/graphile/crystal/commit/45adaff886e7cd72b864150927be6c0cb4a7dfe8),
362
+ [`b05d57b932ea00d10715dcab9f79d443408881fc`](https://github.com/graphile/crystal/commit/b05d57b932ea00d10715dcab9f79d443408881fc)]:
363
+ - grafast@0.1.1-beta.22
364
+ - @dataplan/pg@0.0.1-beta.33
365
+ - graphile-build-pg@5.0.0-beta.39
366
+ - graphile-build@5.0.0-beta.34
367
+ - graphile-config@0.0.1-beta.16
368
+ - tamedevil@0.0.0-beta.8
369
+
370
+ ## 5.0.0-beta.38
371
+
372
+ ### Patch Changes
373
+
374
+ - [`d68c5831ed66dc8a7a79aab2100ca733409c6f72`](https://github.com/graphile/crystal/commit/d68c5831ed66dc8a7a79aab2100ca733409c6f72)
375
+ Thanks [@benjie](https://github.com/benjie)! - Improve error messages around
376
+ correct usage of typeDefs and gql helper.
377
+
378
+ - [#2355](https://github.com/graphile/crystal/pull/2355)
379
+ [`7bb77961a38abea8a07980a3f47bc3ca22dac8f8`](https://github.com/graphile/crystal/commit/7bb77961a38abea8a07980a3f47bc3ca22dac8f8)
380
+ Thanks [@benjie](https://github.com/benjie)! - Fix bug in makeWrapPlansPlugin
381
+ where the default plan resolver used was incorrect; use the new
382
+ `defaultPlanResolver` export from `grafast` instead of building our own.
383
+
384
+ - [#2376](https://github.com/graphile/crystal/pull/2376)
385
+ [`da6f3c04efe3d8634c0bc3fcf93ac2518de85322`](https://github.com/graphile/crystal/commit/da6f3c04efe3d8634c0bc3fcf93ac2518de85322)
386
+ Thanks [@benjie](https://github.com/benjie)! - Overhaul Grafast to remove more
387
+ input planning - inputs should be evaluated at runtime - and remove more
388
+ plan-time step evaluation.
389
+
390
+ `FieldArgs.get` is no more; use `FieldArgs.getRaw` or use `bakedInput()`
391
+ (TODO: document) to get the "baked" version of a raw input value.
392
+
393
+ Input object fields no longer have `applyPlan`/`inputPlan`, instead having the
394
+ runtime equivalents `apply()` and `baked()`. `FieldArgs` is no longer
395
+ available on input object fields, since these fields are no longer called at
396
+ plantime; instead, the actual value is passed.
397
+
398
+ `FieldArgs` gains `.typeAt(path)` method that details the GraphQL input type
399
+ at the given path.
400
+
401
+ Field arguments are no longer passed `FieldArgs`, instead they're passed a
402
+ (similar) `FieldArg` object representing the argument value itself.
403
+
404
+ `autoApplyAfterParentPlan` is no more - instead if an argument has `applyPlan`
405
+ it will be called automatically unless it was called during the field plan
406
+ resolver itself.
407
+
408
+ `autoApplyAfterParentSubscribePlan` is no more - instead if an argument has
409
+ `applySubscribePlan` it will be called automatically unless it was called
410
+ during the field plan resolver itself.
411
+
412
+ Field arguments no longer support `inputPlan` - use `bakedInput()` if you need
413
+ that.
414
+
415
+ Input fields no longer support `inputPlan`, `applyPlan`,
416
+ `autoApplyAfterParentInputPlan` nor `autoApplyAfterParentApplyPlan`. Instead,
417
+ `apply()` (which is called by `applyStep()` at runtime) has been added.
418
+
419
+ `sqlValueWithCodec(value, codec)` can be used at runtime in places where
420
+ `$step.placeholder($value, codec)` would have been used previously.
421
+ `placeholder` has been removed from all places that are now runtime - namely
422
+ the list of modifiers below...
423
+
424
+ The following `ModifierStep` classes have all dropped their `Step` suffix,
425
+ these `Modifier` classes now all run at runtime, and are thus no longer steps;
426
+ they're invoked as part of the new `applyInput()` (TODO: document) step:
427
+ - `ModifierStep` &rArr; `Modifier`
428
+ - `PgBooleanFilterStep` &rArr; `PgBooleanFilter`
429
+ - `PgClassFilterStep` &rArr; `PgClassFilter`
430
+ - `PgConditionCapableParentStep` &rArr; `PgConditionCapableParent`
431
+ - `PgConditionLikeStep` &rArr; `PgConditionLike`
432
+ - `PgConditionStepMode` &rArr; `PgConditionMode`
433
+ - `PgConditionStep` &rArr; `PgCondition`
434
+ - `PgManyFilterStep` &rArr; `PgManyFilter`
435
+ - `PgOrFilterStep` &rArr; `PgOrFilter`
436
+ - `PgTempTableStep` &rArr; `PgTempTable`
437
+ - `SetterCapableStep` &rArr; `SetterCapable`
438
+ - `SetterStep` &rArr; `Setter`
439
+
440
+ (Interestingly, other than the removal of `placeholder` and the fact they deal
441
+ with runtime values rather than steps now, they're very similar to what they
442
+ were before.)
443
+
444
+ The deprecated forms of the above have been removed.
445
+
446
+ Methods that rely on these modifier plans have been removed:
447
+ - `PgUnionAllStep.wherePlan` - use
448
+ `fieldArg.apply($unionAll, qb => qb.whereBuilder())` instead
449
+ - `PgUnionAllStep.havingPlan` - use
450
+ `fieldArg.apply($unionAll, qb => qb.havingBuilder())` instead
451
+ - Same for PgSelectStep
452
+
453
+ The following gain query builders:
454
+ - `PgInsertSingle`
455
+ - `PgUpdateSingle`
456
+ - `PgDeleteSingle`
457
+
458
+ Query builders gain `meta`, an object that can be augmented with metadata
459
+ about the operation (typically this relates to cursors and similar
460
+ functionality). This is now used to implement `clientMutationId`.
461
+
462
+ Extends query builders with additional functionality.
463
+
464
+ Many of the types have had their generics changed, TypeScript should guide you
465
+ if you have issues here.
466
+
467
+ `NodeIdHandler` now requires a `getIdentifiers` method that runs at runtime
468
+ and returns the identifiers from a decoded NodeId string.
469
+
470
+ Types around GraphQL Global Object Identification (i.e. `Node` / `id`) have
471
+ changed.
472
+
473
+ - Updated dependencies
474
+ [[`d34014a9a3c469154cc796086ba13719954731e5`](https://github.com/graphile/crystal/commit/d34014a9a3c469154cc796086ba13719954731e5),
475
+ [`d3ae3415c230784fdfefc9d192ad93aca462bceb`](https://github.com/graphile/crystal/commit/d3ae3415c230784fdfefc9d192ad93aca462bceb),
476
+ [`98516379ac355a0833a64e002f3717cc3a1d6473`](https://github.com/graphile/crystal/commit/98516379ac355a0833a64e002f3717cc3a1d6473),
477
+ [`f8602d05eed3247c90b87c55d7af580d1698effc`](https://github.com/graphile/crystal/commit/f8602d05eed3247c90b87c55d7af580d1698effc),
478
+ [`65df25534fa3f787ba2ab7fd9547d295ff2b1288`](https://github.com/graphile/crystal/commit/65df25534fa3f787ba2ab7fd9547d295ff2b1288),
479
+ [`1b3c76efd27df73eab3a5a1d221ce13de4cd6b1a`](https://github.com/graphile/crystal/commit/1b3c76efd27df73eab3a5a1d221ce13de4cd6b1a),
480
+ [`f6e22692b628703b8ea48e580dc0b6f0bcbc9c5a`](https://github.com/graphile/crystal/commit/f6e22692b628703b8ea48e580dc0b6f0bcbc9c5a),
481
+ [`c3538050abbb485cf1d43f7c870b89f1ad7c2218`](https://github.com/graphile/crystal/commit/c3538050abbb485cf1d43f7c870b89f1ad7c2218),
482
+ [`3c0a925f26f10cae627a23c49c75ccd8d76b60c8`](https://github.com/graphile/crystal/commit/3c0a925f26f10cae627a23c49c75ccd8d76b60c8),
483
+ [`fcaeb48844156e258a037f420ea1505edb50c52a`](https://github.com/graphile/crystal/commit/fcaeb48844156e258a037f420ea1505edb50c52a),
484
+ [`68926abc31c32ce527327ffbb1ede4b0b7be446b`](https://github.com/graphile/crystal/commit/68926abc31c32ce527327ffbb1ede4b0b7be446b),
485
+ [`98c5009e21e423b0da22c2cb70cdb62909578f50`](https://github.com/graphile/crystal/commit/98c5009e21e423b0da22c2cb70cdb62909578f50),
486
+ [`4b49dbd2df3b339a2ba3f1e9ff400fa1a125298b`](https://github.com/graphile/crystal/commit/4b49dbd2df3b339a2ba3f1e9ff400fa1a125298b),
487
+ [`d7950e8e28ec6106a4ce2f7fe5e35d88b10eac48`](https://github.com/graphile/crystal/commit/d7950e8e28ec6106a4ce2f7fe5e35d88b10eac48),
488
+ [`c8f1971ea4198633ec97f72f82abf65089f71a88`](https://github.com/graphile/crystal/commit/c8f1971ea4198633ec97f72f82abf65089f71a88),
489
+ [`182ed0564104f59b012e0f9ffd452556b0927750`](https://github.com/graphile/crystal/commit/182ed0564104f59b012e0f9ffd452556b0927750),
490
+ [`dd3d22eab73a8554715bf1111e30586251f69a88`](https://github.com/graphile/crystal/commit/dd3d22eab73a8554715bf1111e30586251f69a88),
491
+ [`a120a8e43b24dfc174950cdbb69e481272a0b45e`](https://github.com/graphile/crystal/commit/a120a8e43b24dfc174950cdbb69e481272a0b45e),
492
+ [`be1e558d6a1a8cae3bf4b5724c340469d8837504`](https://github.com/graphile/crystal/commit/be1e558d6a1a8cae3bf4b5724c340469d8837504),
493
+ [`84f06eafa051e907a3050237ac6ee5aefb184652`](https://github.com/graphile/crystal/commit/84f06eafa051e907a3050237ac6ee5aefb184652),
494
+ [`4a3aeaa77c8b8d2e39c1a9d05581d0c613b812cf`](https://github.com/graphile/crystal/commit/4a3aeaa77c8b8d2e39c1a9d05581d0c613b812cf),
495
+ [`12d3a7174949794a1679132635e196f5dadce8a2`](https://github.com/graphile/crystal/commit/12d3a7174949794a1679132635e196f5dadce8a2),
496
+ [`ab7658ac44e1a5a0a98c6bb688a26d94b1175cc1`](https://github.com/graphile/crystal/commit/ab7658ac44e1a5a0a98c6bb688a26d94b1175cc1),
497
+ [`bc2a00d35f0a1954dba22e857adc3f4e2f5118e5`](https://github.com/graphile/crystal/commit/bc2a00d35f0a1954dba22e857adc3f4e2f5118e5),
498
+ [`ceeb9a6b63e566b09298e0440a385943302ad0f9`](https://github.com/graphile/crystal/commit/ceeb9a6b63e566b09298e0440a385943302ad0f9),
499
+ [`3e8c64bef928295494119e15e1e55cbdadb696fa`](https://github.com/graphile/crystal/commit/3e8c64bef928295494119e15e1e55cbdadb696fa),
500
+ [`0fc2db95d90df918cf5c59ef85f22ac78d8000d3`](https://github.com/graphile/crystal/commit/0fc2db95d90df918cf5c59ef85f22ac78d8000d3),
501
+ [`90e81a5deeae554a8be2dd55dcd01489860e96e6`](https://github.com/graphile/crystal/commit/90e81a5deeae554a8be2dd55dcd01489860e96e6),
502
+ [`836c8327a5ca1bd3c69f72055e71d00694de363e`](https://github.com/graphile/crystal/commit/836c8327a5ca1bd3c69f72055e71d00694de363e),
503
+ [`2f31836cb89a7ab27a8919803fe12b53a46d77e4`](https://github.com/graphile/crystal/commit/2f31836cb89a7ab27a8919803fe12b53a46d77e4),
504
+ [`c59132eb7a93bc82493d2f1ca050db8aaea9f4d1`](https://github.com/graphile/crystal/commit/c59132eb7a93bc82493d2f1ca050db8aaea9f4d1),
505
+ [`7c38cdeffe034c9b4f5cdd03a8f7f446bd52dcb7`](https://github.com/graphile/crystal/commit/7c38cdeffe034c9b4f5cdd03a8f7f446bd52dcb7),
506
+ [`728888b28fcd2a6fc481e0ccdfe20d41181a091f`](https://github.com/graphile/crystal/commit/728888b28fcd2a6fc481e0ccdfe20d41181a091f),
507
+ [`f4f39092d7a51517668384945895d3b450237cce`](https://github.com/graphile/crystal/commit/f4f39092d7a51517668384945895d3b450237cce),
508
+ [`5cf3dc9d158891eaf324b2cd4f485d1d4bbb6b5e`](https://github.com/graphile/crystal/commit/5cf3dc9d158891eaf324b2cd4f485d1d4bbb6b5e),
509
+ [`925689578ee9def403382df70f0e003bb299c166`](https://github.com/graphile/crystal/commit/925689578ee9def403382df70f0e003bb299c166),
510
+ [`83d3b533e702cc875b46ba2ca02bf3642b421be8`](https://github.com/graphile/crystal/commit/83d3b533e702cc875b46ba2ca02bf3642b421be8),
511
+ [`7001138c38e09822ad13db1018c62d2cac37941e`](https://github.com/graphile/crystal/commit/7001138c38e09822ad13db1018c62d2cac37941e),
512
+ [`e9e7e33665e22ec397e9ead054d2e4aad3eadc8c`](https://github.com/graphile/crystal/commit/e9e7e33665e22ec397e9ead054d2e4aad3eadc8c),
513
+ [`bb6ec8d834e3e630e28316196246f514114a2296`](https://github.com/graphile/crystal/commit/bb6ec8d834e3e630e28316196246f514114a2296),
514
+ [`3e188c2e981193d228ba3b7433f5e326336f629b`](https://github.com/graphile/crystal/commit/3e188c2e981193d228ba3b7433f5e326336f629b),
515
+ [`07a5469e5d3d050a7bcab928bb751c9e150d2e49`](https://github.com/graphile/crystal/commit/07a5469e5d3d050a7bcab928bb751c9e150d2e49),
516
+ [`e6da5d956ab696932410e7172cedfacba71dbf5e`](https://github.com/graphile/crystal/commit/e6da5d956ab696932410e7172cedfacba71dbf5e),
517
+ [`2b1918d053f590cdc534c8cb81f7e74e96c1bbe6`](https://github.com/graphile/crystal/commit/2b1918d053f590cdc534c8cb81f7e74e96c1bbe6),
518
+ [`037a1bcdc8ed8493d4748e08c18f258e4382a815`](https://github.com/graphile/crystal/commit/037a1bcdc8ed8493d4748e08c18f258e4382a815),
519
+ [`72b300b436a7acedaa7d0e3a7a5458d15a0e5396`](https://github.com/graphile/crystal/commit/72b300b436a7acedaa7d0e3a7a5458d15a0e5396),
520
+ [`770363214ee630746cddc9080dec22bbf38a3bb5`](https://github.com/graphile/crystal/commit/770363214ee630746cddc9080dec22bbf38a3bb5),
521
+ [`d1ecb39693a341f85762b27012ec4ea013857b0c`](https://github.com/graphile/crystal/commit/d1ecb39693a341f85762b27012ec4ea013857b0c),
522
+ [`042ebafe11fcf7e2ecac9b131265a55dddd42a6d`](https://github.com/graphile/crystal/commit/042ebafe11fcf7e2ecac9b131265a55dddd42a6d),
523
+ [`fa005eb0783c58a2476add984fbdd462e0e91dbe`](https://github.com/graphile/crystal/commit/fa005eb0783c58a2476add984fbdd462e0e91dbe),
524
+ [`df0e5a0f968cf6f9ae97b68745a9a2f391324bf5`](https://github.com/graphile/crystal/commit/df0e5a0f968cf6f9ae97b68745a9a2f391324bf5),
525
+ [`ef4cf75acd80e6b9c700c2b5a7ace899e565ef7f`](https://github.com/graphile/crystal/commit/ef4cf75acd80e6b9c700c2b5a7ace899e565ef7f),
526
+ [`ba2bfa15deaaddd92757a56c2b761624afe940bd`](https://github.com/graphile/crystal/commit/ba2bfa15deaaddd92757a56c2b761624afe940bd),
527
+ [`c041fd250372c57601188b65a6411c8f440afab6`](https://github.com/graphile/crystal/commit/c041fd250372c57601188b65a6411c8f440afab6),
528
+ [`629b45aab49151810f6efc18ac18f7d735626433`](https://github.com/graphile/crystal/commit/629b45aab49151810f6efc18ac18f7d735626433),
529
+ [`6d19724330d50d076aab9442660fa8abddd095cb`](https://github.com/graphile/crystal/commit/6d19724330d50d076aab9442660fa8abddd095cb),
530
+ [`ca5bc1a834df7b894088fb8602a12f9fcff55b38`](https://github.com/graphile/crystal/commit/ca5bc1a834df7b894088fb8602a12f9fcff55b38),
531
+ [`da6f3c04efe3d8634c0bc3fcf93ac2518de85322`](https://github.com/graphile/crystal/commit/da6f3c04efe3d8634c0bc3fcf93ac2518de85322),
532
+ [`8026b982a81776fb3d1d808392970c2d678c4023`](https://github.com/graphile/crystal/commit/8026b982a81776fb3d1d808392970c2d678c4023),
533
+ [`d257a1a1e59a7d4da0bf67345c07b04c04a2f7da`](https://github.com/graphile/crystal/commit/d257a1a1e59a7d4da0bf67345c07b04c04a2f7da),
534
+ [`00d79e6f5608affc3f36bb0ce4ca2547230174e7`](https://github.com/graphile/crystal/commit/00d79e6f5608affc3f36bb0ce4ca2547230174e7),
535
+ [`15854c5109114919b3d38fa675c539cda1f634a1`](https://github.com/graphile/crystal/commit/15854c5109114919b3d38fa675c539cda1f634a1),
536
+ [`f0bc64b71914dfdd3612f4b65370401fd85b97bc`](https://github.com/graphile/crystal/commit/f0bc64b71914dfdd3612f4b65370401fd85b97bc)]:
537
+ - grafast@0.1.1-beta.21
538
+ - @dataplan/pg@0.0.1-beta.32
539
+ - graphile-build-pg@5.0.0-beta.38
540
+ - graphile-build@5.0.0-beta.33
541
+ - graphile-config@0.0.1-beta.15
542
+
543
+ ## 5.0.0-beta.37
544
+
545
+ ### Patch Changes
546
+
547
+ - Updated dependencies
548
+ [[`fc9d64eb8`](https://github.com/graphile/crystal/commit/fc9d64eb8002d3b72625bc505ed76c07f4296d68),
549
+ [`a2dbad945`](https://github.com/graphile/crystal/commit/a2dbad9457195bec797d72e4e6d45f45278f9f69),
550
+ [`31078842a`](https://github.com/graphile/crystal/commit/31078842ad0eeaa7111491fa9eb5e3bd026fb38a),
551
+ [`5a0ec31de`](https://github.com/graphile/crystal/commit/5a0ec31deae91f1dd17a77a4bb7c1a911a27e26a)]:
552
+ - @dataplan/pg@0.0.1-beta.31
553
+ - grafast@0.1.1-beta.20
554
+ - graphile-build-pg@5.0.0-beta.37
555
+ - graphile-build@5.0.0-beta.32
556
+
557
+ ## 5.0.0-beta.36
558
+
559
+ ### Patch Changes
560
+
561
+ - Updated dependencies
562
+ [[`83c546509`](https://github.com/graphile/crystal/commit/83c546509d24be2955a56120981363ad3c3a5f3f)]:
563
+ - graphile-config@0.0.1-beta.14
564
+ - @dataplan/pg@0.0.1-beta.30
565
+ - grafast@0.1.1-beta.19
566
+ - graphile-build@5.0.0-beta.31
567
+ - graphile-build-pg@5.0.0-beta.36
568
+
569
+ ## 5.0.0-beta.35
570
+
571
+ ### Patch Changes
572
+
573
+ - Updated dependencies
574
+ [[`7580bc16a`](https://github.com/graphile/crystal/commit/7580bc16a050fd8d916c6dabe9d1ded980090349),
575
+ [`b336a5829`](https://github.com/graphile/crystal/commit/b336a58291cfec7aef884d3843172d408abfaf3c)]:
576
+ - graphile-config@0.0.1-beta.13
577
+ - @dataplan/pg@0.0.1-beta.29
578
+ - grafast@0.1.1-beta.18
579
+ - graphile-build@5.0.0-beta.30
580
+ - graphile-build-pg@5.0.0-beta.35
581
+
582
+ ## 5.0.0-beta.34
583
+
584
+ ### Patch Changes
585
+
586
+ - Updated dependencies
587
+ [[`bee1db4f4`](https://github.com/graphile/crystal/commit/bee1db4f442502b62cb05cd0f7092990328497b8)]:
588
+ - graphile-build-pg@5.0.0-beta.34
589
+
590
+ ## 5.0.0-beta.33
591
+
592
+ ### Patch Changes
593
+
594
+ - Updated dependencies
595
+ [[`555d65cce`](https://github.com/graphile/crystal/commit/555d65ccecb875f1e34cb40108176f0ddc11df64),
596
+ [`69ab227b5`](https://github.com/graphile/crystal/commit/69ab227b5e1c057a6fc8ebba87bde80d5aa7f3c8),
597
+ [`efa25d97d`](https://github.com/graphile/crystal/commit/efa25d97df2e00f13bc29806d396a8366a121031),
598
+ [`d13b76f0f`](https://github.com/graphile/crystal/commit/d13b76f0fef2a58466ecb44880af62d25910e83e),
599
+ [`b167bd849`](https://github.com/graphile/crystal/commit/b167bd8499be5866b71bac6594d55bd768fda1d0),
600
+ [`a202145c5`](https://github.com/graphile/crystal/commit/a202145c5af3e5467424e6772d532c2db1eb67c6),
601
+ [`2a37fb99a`](https://github.com/graphile/crystal/commit/2a37fb99a04784647dff6ab8c5bfffb072cc6e8a),
602
+ [`5d9f2de85`](https://github.com/graphile/crystal/commit/5d9f2de8519b216732b17464d0b326ec8d7c58de),
603
+ [`6a13ecbd4`](https://github.com/graphile/crystal/commit/6a13ecbd45534c39c846c1d8bc58242108426dd1),
604
+ [`84f07626d`](https://github.com/graphile/crystal/commit/84f07626d9dd9e22f6ae6a1045053df046fbc4ea),
605
+ [`86e228299`](https://github.com/graphile/crystal/commit/86e22829996a745dc1f8cbaf32e709b1bd346e79),
606
+ [`933786868`](https://github.com/graphile/crystal/commit/9337868689f4f05ab5faf2d4bb18a8ad8e23e189),
607
+ [`cba6ee06d`](https://github.com/graphile/crystal/commit/cba6ee06d38ec5ae4ef4dafa58569fad61f239ac)]:
608
+ - graphile-build-pg@5.0.0-beta.33
609
+ - graphile-build@5.0.0-beta.29
610
+ - grafast@0.1.1-beta.17
611
+ - graphile-config@0.0.1-beta.12
612
+ - @dataplan/pg@0.0.1-beta.28
613
+
614
+ ## 5.0.0-beta.32
615
+
616
+ ### Patch Changes
617
+
618
+ - Updated dependencies
619
+ [[`87bdf9730`](https://github.com/graphile/crystal/commit/87bdf973036a3801e44b22cfc9f0feb639de4aa9),
620
+ [`5626c7d36`](https://github.com/graphile/crystal/commit/5626c7d3649285e11fe9857dfa319d2883d027eb),
621
+ [`76c7340b7`](https://github.com/graphile/crystal/commit/76c7340b74d257c454beec883384d19ef078b21e),
622
+ [`aa480f6a3`](https://github.com/graphile/crystal/commit/aa480f6a3db8b545ff113e7a3a4b479be42a0eab)]:
623
+ - graphile-build-pg@5.0.0-beta.32
624
+ - graphile-config@0.0.1-beta.11
625
+ - grafast@0.1.1-beta.16
626
+ - @dataplan/pg@0.0.1-beta.27
627
+ - graphile-build@5.0.0-beta.28
628
+
629
+ ## 5.0.0-beta.31
630
+
631
+ ### Patch Changes
632
+
633
+ - Updated dependencies
634
+ [[`632691409`](https://github.com/graphile/crystal/commit/6326914098af55f20ac85ccf3537e75910a7dafa)]:
635
+ - graphile-build-pg@5.0.0-beta.31
636
+ - graphile-build@5.0.0-beta.27
637
+
638
+ ## 5.0.0-beta.30
639
+
640
+ ### Patch Changes
641
+
642
+ - Updated dependencies
643
+ [[`0b1f7b577`](https://github.com/graphile/crystal/commit/0b1f7b577114a49b8e3283823845ec6e37484240)]:
644
+ - graphile-build-pg@5.0.0-beta.30
645
+ - graphile-build@5.0.0-beta.26
646
+
647
+ ## 5.0.0-beta.29
648
+
649
+ ### Patch Changes
650
+
651
+ - Updated dependencies
652
+ [[`d7e6e714f`](https://github.com/graphile/crystal/commit/d7e6e714f0cc5656112703484298b77538b2dccc),
653
+ [`d5834def1`](https://github.com/graphile/crystal/commit/d5834def1fb84f3e2c0c0a6f146f8249a6df890a),
654
+ [`bb006ec7b`](https://github.com/graphile/crystal/commit/bb006ec7bdab24192c84f093ce3f92969aeb7279),
655
+ [`653929af0`](https://github.com/graphile/crystal/commit/653929af0a99a8a4d52b66e66c736be668b8700a),
656
+ [`6fdc6cad8`](https://github.com/graphile/crystal/commit/6fdc6cad8f8d1230202df533d05cc2bd80538f09),
657
+ [`42b982463`](https://github.com/graphile/crystal/commit/42b9824637a6c05e02935f2b05b5e8e0c61965a6),
658
+ [`eb69c7361`](https://github.com/graphile/crystal/commit/eb69c7361fc7bf8c5b1ce342eeb698bd28c9e013),
659
+ [`54054b873`](https://github.com/graphile/crystal/commit/54054b8733236ba7b2f2fa47d84e085f7196e3f9),
660
+ [`884a4b429`](https://github.com/graphile/crystal/commit/884a4b4297af90fdadaf73addd524f1fbbcfdcce),
661
+ [`0df171123`](https://github.com/graphile/crystal/commit/0df17112300a8ea391dfd220c5f05d362ceaa58a),
662
+ [`1eac03ec2`](https://github.com/graphile/crystal/commit/1eac03ec2e9da65c64b7754c04292f43da82c40b),
663
+ [`dfac43992`](https://github.com/graphile/crystal/commit/dfac43992019b0b6c1d113d2490a87eb03d103d7),
664
+ [`38835313a`](https://github.com/graphile/crystal/commit/38835313ad93445206dccdd4cf07b90c5a6e4377),
665
+ [`426e9320e`](https://github.com/graphile/crystal/commit/426e9320e76ef95927eebb6fe4072050b6208771),
666
+ [`e8a9fd424`](https://github.com/graphile/crystal/commit/e8a9fd4243981b892364148eca1df66620ddeb87),
667
+ [`cc0941731`](https://github.com/graphile/crystal/commit/cc0941731a1679bc04ce7b7fd4254009bb5f1f62),
668
+ [`50f6ce456`](https://github.com/graphile/crystal/commit/50f6ce456de3edd084869b54ee9f2eaf51a7fa0c),
669
+ [`b0865d169`](https://github.com/graphile/crystal/commit/b0865d1691105b5419009954c98c8109a27a5d81),
670
+ [`3b09b414f`](https://github.com/graphile/crystal/commit/3b09b414ff43c34593373fa1f242481b0c7ada70),
671
+ [`b7b6dd64f`](https://github.com/graphile/crystal/commit/b7b6dd64fcc07f2ca15528fd39d61297d743dcc6),
672
+ [`8b472cd51`](https://github.com/graphile/crystal/commit/8b472cd51cd66d8227f9f2722d09c0a774792b0f),
673
+ [`ba637b56d`](https://github.com/graphile/crystal/commit/ba637b56d79a14f82fe555739921724eab0c07f7),
674
+ [`9cd9bb522`](https://github.com/graphile/crystal/commit/9cd9bb5222a9f0398ee4b8bfa4f741b6de2a2192)]:
675
+ - graphile-build-pg@5.0.0-beta.29
676
+ - grafast@0.1.1-beta.15
677
+ - graphile-build@5.0.0-beta.25
678
+ - @dataplan/pg@0.0.1-beta.26
679
+ - graphile-config@0.0.1-beta.10
680
+
681
+ ## 5.0.0-beta.28
682
+
683
+ ### Patch Changes
684
+
685
+ - Updated dependencies
686
+ [[`52ef49ca9`](https://github.com/graphile/crystal/commit/52ef49ca9357e63d0aa5c06ac089bf57ee991c73),
687
+ [`82ce02cd9`](https://github.com/graphile/crystal/commit/82ce02cd93df3df3c9570c3528483c4f720ff9bb),
688
+ [`871d32b2a`](https://github.com/graphile/crystal/commit/871d32b2a18df0d257880fc54a61d9e68c4607d6),
689
+ [`e8a0c4441`](https://github.com/graphile/crystal/commit/e8a0c4441cd04402974cd0af6b80816c9cda91e7),
690
+ [`d9d07b97b`](https://github.com/graphile/crystal/commit/d9d07b97b41c928033b9a920931ae0ccccf88e82),
691
+ [`a26e3a30c`](https://github.com/graphile/crystal/commit/a26e3a30c02f963f8f5e9c9d021e871f33689e1b),
692
+ [`eca7e62e2`](https://github.com/graphile/crystal/commit/eca7e62e2a09af77f4f166a281dab81d009d9ec1),
693
+ [`02c11a4d4`](https://github.com/graphile/crystal/commit/02c11a4d42bf434dffc9354b300e8d791c4eeb2d)]:
694
+ - graphile-build-pg@5.0.0-beta.28
695
+ - @dataplan/pg@0.0.1-beta.25
696
+ - grafast@0.1.1-beta.14
697
+ - graphile-build@5.0.0-beta.24
698
+
699
+ ## 5.0.0-beta.27
700
+
701
+ ### Patch Changes
702
+
703
+ - Updated dependencies
704
+ [[`807650035`](https://github.com/graphile/crystal/commit/8076500354a3e2bc2de1b6c4e947bd710cc5bddc)]:
705
+ - @dataplan/pg@0.0.1-beta.24
706
+ - grafast@0.1.1-beta.13
707
+ - graphile-build-pg@5.0.0-beta.27
708
+ - graphile-build@5.0.0-beta.23
709
+
710
+ ## 5.0.0-beta.26
711
+
712
+ ### Patch Changes
713
+
714
+ - [#2094](https://github.com/graphile/crystal/pull/2094)
715
+ [`c0e50a1b4`](https://github.com/graphile/crystal/commit/c0e50a1b4f1c95bfcafb5458dce0d5e56852d7d0)
716
+ Thanks [@benjie](https://github.com/benjie)! - makeWrapPlansPlugin more likely
717
+ to be exportable.
718
+
719
+ - Updated dependencies
720
+ [[`1f67999eb`](https://github.com/graphile/crystal/commit/1f67999eb11435562ca76e8e7349aaadc28390f6),
721
+ [`1bd50b61e`](https://github.com/graphile/crystal/commit/1bd50b61ebb10b7d09b3612c2e2767c41cca3b78),
722
+ [`8bdc553b7`](https://github.com/graphile/crystal/commit/8bdc553b79aae21a27d22a4e1f1e57ee2e5d1d3f),
723
+ [`4e102b1a1`](https://github.com/graphile/crystal/commit/4e102b1a1cd232e6f6703df0706415f01831dab2),
724
+ [`1cabbd311`](https://github.com/graphile/crystal/commit/1cabbd311bdefd7ce78f8dacbf61a42237a6c73c),
725
+ [`7bb1573ba`](https://github.com/graphile/crystal/commit/7bb1573ba45a4d8b7fa9ad53cdd79686d2641383),
726
+ [`590b6fdf5`](https://github.com/graphile/crystal/commit/590b6fdf5d04a392c4cc9e8bdad83278377c547b),
727
+ [`18addb385`](https://github.com/graphile/crystal/commit/18addb3852525aa91019a36d58fa2fecd8b5b443),
728
+ [`d6102714e`](https://github.com/graphile/crystal/commit/d6102714e4fec35952784c988c1617c789eee0cd),
729
+ [`6ed615e55`](https://github.com/graphile/crystal/commit/6ed615e557b2ab1fb57f1e68c06730a8e3da7175),
730
+ [`b25cc539c`](https://github.com/graphile/crystal/commit/b25cc539c00aeda7a943c37509aaae4dc7812317),
731
+ [`867f33136`](https://github.com/graphile/crystal/commit/867f331365346fc46ed1e0d23c79719846e398f4),
732
+ [`925123497`](https://github.com/graphile/crystal/commit/925123497cf17b5e145ab80f62fa9de768a977ae),
733
+ [`cf535c210`](https://github.com/graphile/crystal/commit/cf535c21078da06c14dd12f30e9b4378da4ded03),
734
+ [`acf99b190`](https://github.com/graphile/crystal/commit/acf99b190954e3c5926e820daed68dfe8eb3ee1f),
735
+ [`4967a197f`](https://github.com/graphile/crystal/commit/4967a197fd2c71ee2a581fe29470ee9f30e74de5),
736
+ [`1908e1ba1`](https://github.com/graphile/crystal/commit/1908e1ba11883a34dac66f985fc20ab160e572b1),
737
+ [`084d80be6`](https://github.com/graphile/crystal/commit/084d80be6e17187c9a9932bcf079e3f460368782),
738
+ [`aa0474755`](https://github.com/graphile/crystal/commit/aa0474755142a758fc58c5c1a30b8c754bc84e7c)]:
739
+ - graphile-build-pg@5.0.0-beta.26
740
+ - grafast@0.1.1-beta.12
741
+ - @dataplan/pg@0.0.1-beta.23
742
+ - graphile-build@5.0.0-beta.22
743
+
744
+ ## 5.0.0-beta.25
745
+
746
+ ### Patch Changes
747
+
748
+ - Updated dependencies
749
+ [[`582bd768f`](https://github.com/graphile/crystal/commit/582bd768fec403ce3284f293b85b9fd86e4d3f40)]:
750
+ - graphile-build@5.0.0-beta.21
751
+ - graphile-config@0.0.1-beta.9
752
+ - @dataplan/pg@0.0.1-beta.22
753
+ - grafast@0.1.1-beta.11
754
+ - graphile-build-pg@5.0.0-beta.25
755
+
756
+ ## 5.0.0-beta.24
757
+
758
+ ### Patch Changes
759
+
760
+ - Updated dependencies
761
+ [[`3c161f7e1`](https://github.com/graphile/crystal/commit/3c161f7e13375105b1035a7d5d1c0f2b507ca5c7),
762
+ [`a674a9923`](https://github.com/graphile/crystal/commit/a674a9923bc908c9315afa40e0cb256ee0953d16),
763
+ [`b7cfeffd1`](https://github.com/graphile/crystal/commit/b7cfeffd1019d61c713a5054c4f5929960a2a6ab)]:
764
+ - grafast@0.1.1-beta.10
765
+ - @dataplan/pg@0.0.1-beta.21
766
+ - graphile-build@5.0.0-beta.20
767
+ - graphile-build-pg@5.0.0-beta.24
768
+
769
+ ## 5.0.0-beta.23
770
+
771
+ ### Patch Changes
772
+
773
+ - Updated dependencies
774
+ [[`437570f97`](https://github.com/graphile/crystal/commit/437570f97e8520afaf3d0d0b514d1f4c31546b76)]:
775
+ - graphile-build-pg@5.0.0-beta.23
776
+ - grafast@0.1.1-beta.9
777
+ - @dataplan/pg@0.0.1-beta.20
778
+ - graphile-build@5.0.0-beta.19
779
+
780
+ ## 5.0.0-beta.22
781
+
782
+ ### Patch Changes
783
+
784
+ - Updated dependencies
785
+ [[`1842af661`](https://github.com/graphile/crystal/commit/1842af661950d5f962b65f6362a45a3b9c8f15e8),
786
+ [`bd5a908a4`](https://github.com/graphile/crystal/commit/bd5a908a4d04310f90dfb46ad87398ffa993af3b)]:
787
+ - graphile-build-pg@5.0.0-beta.22
788
+ - graphile-build@5.0.0-beta.18
789
+ - grafast@0.1.1-beta.8
790
+ - @dataplan/pg@0.0.1-beta.19
791
+
792
+ ## 5.0.0-beta.21
793
+
794
+ ### Patch Changes
795
+
796
+ - [#2042](https://github.com/graphile/crystal/pull/2042)
797
+ [`e22cb4dfa`](https://github.com/graphile/crystal/commit/e22cb4dfa94b60d1b99c374e8c28943373bd8496)
798
+ Thanks [@benjie](https://github.com/benjie)! - Expose `nullable?: boolean` as
799
+ an orderByAscDesc option, and default it true if 'nulls' is set. Vital if
800
+ you're ordering by nullable things!
801
+
802
+ - [#2006](https://github.com/graphile/crystal/pull/2006)
803
+ [`bee0a0a68`](https://github.com/graphile/crystal/commit/bee0a0a68d48816f84b1a7f5ec69bd6069211426)
804
+ Thanks [@benjie](https://github.com/benjie)! - Adopt improved inflection
805
+ typings.
806
+
807
+ - Updated dependencies
808
+ [[`357d475f5`](https://github.com/graphile/crystal/commit/357d475f54fecc8c51892e0346d6872b34132430),
809
+ [`30bcd6c12`](https://github.com/graphile/crystal/commit/30bcd6c12e59f878617ea987c35a2f589ce05cb8),
810
+ [`3551725e7`](https://github.com/graphile/crystal/commit/3551725e71c3ed876554e19e5ab2c1dcb0fb1143),
811
+ [`80836471e`](https://github.com/graphile/crystal/commit/80836471e5cedb29dee63bc5002550c4f1713cfd),
812
+ [`b788dd868`](https://github.com/graphile/crystal/commit/b788dd86849e703cc3aa863fd9190c36a087b865),
813
+ [`5eca6d65a`](https://github.com/graphile/crystal/commit/5eca6d65a816bac3d0ceaa6cafa7df1a79c2be47),
814
+ [`a5c20fefb`](https://github.com/graphile/crystal/commit/a5c20fefb571dea6d1187515dc48dd547e9e6204),
815
+ [`1ce08980e`](https://github.com/graphile/crystal/commit/1ce08980e2a52ed9bc81564d248c19648ecd3616),
816
+ [`ab08cbf9c`](https://github.com/graphile/crystal/commit/ab08cbf9c504c3cc22495a99a965e7634c18a6a3),
817
+ [`dff4f2535`](https://github.com/graphile/crystal/commit/dff4f2535ac6ce893089b312fcd5fffcd98573a5),
818
+ [`a287a57c2`](https://github.com/graphile/crystal/commit/a287a57c2765da0fb6a132ea0953f64453210ceb),
819
+ [`45e10950b`](https://github.com/graphile/crystal/commit/45e10950b533f97cdd986e5442e2e160a8e431a2),
820
+ [`2fe56f9a6`](https://github.com/graphile/crystal/commit/2fe56f9a6dac03484ace45c29c2223a65f9ca1db),
821
+ [`fed603d71`](https://github.com/graphile/crystal/commit/fed603d719c02f33e12190f925c9e3b06c581fac),
822
+ [`ed6e0d278`](https://github.com/graphile/crystal/commit/ed6e0d2788217a1c419634837f4208013eaf2923),
823
+ [`86168b740`](https://github.com/graphile/crystal/commit/86168b740510aef17bde7ae21f1d0eebb0c5c9b3),
824
+ [`7ad35fe4d`](https://github.com/graphile/crystal/commit/7ad35fe4d9b20f6ec82dc95c362390a87e25b42c),
825
+ [`e82e4911e`](https://github.com/graphile/crystal/commit/e82e4911e32138df1b90ec0fde555ea963018d21),
826
+ [`272608c13`](https://github.com/graphile/crystal/commit/272608c135e4ef0f76b8b5a9f764494a3f3ad779),
827
+ [`42ece5aa6`](https://github.com/graphile/crystal/commit/42ece5aa6ca05345ebc17fb5c7d55df3b79b7612),
828
+ [`e0d69e518`](https://github.com/graphile/crystal/commit/e0d69e518a98c70f9b90f59d243ce33978c1b5a1),
829
+ [`db8ceed0f`](https://github.com/graphile/crystal/commit/db8ceed0f17923eb78ff09c9f3f28800a5c7e3b6),
830
+ [`6699388ec`](https://github.com/graphile/crystal/commit/6699388ec167d35c71220ce5d9113cac578da6cb),
831
+ [`966203504`](https://github.com/graphile/crystal/commit/96620350467ab8c65b56adf2f055e19450f8e772),
832
+ [`c1645b249`](https://github.com/graphile/crystal/commit/c1645b249aae949a548cd916e536ccfb63e5ab35),
833
+ [`ed8bbaa3c`](https://github.com/graphile/crystal/commit/ed8bbaa3cd1563a7601ca8c6b0412633b0ea4ce9),
834
+ [`a0e82b9c5`](https://github.com/graphile/crystal/commit/a0e82b9c5f4e585f1af1e147299cd07944ece6f8),
835
+ [`14e2412ee`](https://github.com/graphile/crystal/commit/14e2412ee368e8d53abf6774c7f0069f32d4e8a3),
836
+ [`c48d3da7f`](https://github.com/graphile/crystal/commit/c48d3da7fe4fac2562fab5f085d252a0bfb6f0b6),
837
+ [`57ab0e1e7`](https://github.com/graphile/crystal/commit/57ab0e1e72c01213b21d3efc539cd655d83d993a),
838
+ [`8442242e4`](https://github.com/graphile/crystal/commit/8442242e43cac7d89ca0c413cf42c9fabf6f247f),
839
+ [`bee0a0a68`](https://github.com/graphile/crystal/commit/bee0a0a68d48816f84b1a7f5ec69bd6069211426),
840
+ [`51a94417f`](https://github.com/graphile/crystal/commit/51a94417fb62b54d309be184f4be479bc267c2b7),
841
+ [`64ce7b765`](https://github.com/graphile/crystal/commit/64ce7b7650530251aec38a51089da66f914c19b4),
842
+ [`cba842357`](https://github.com/graphile/crystal/commit/cba84235786acbd77ade53bae7a3fba4a9be1eb7),
843
+ [`2fa77d0f2`](https://github.com/graphile/crystal/commit/2fa77d0f237cdb98d3dafb6b5e4083a2c6c38673),
844
+ [`81d17460c`](https://github.com/graphile/crystal/commit/81d17460ced08608814635779c5cf997c19c101d)]:
845
+ - @dataplan/pg@0.0.1-beta.18
846
+ - grafast@0.1.1-beta.7
847
+ - tamedevil@0.0.0-beta.7
848
+ - graphile-build-pg@5.0.0-beta.21
849
+ - graphile-build@5.0.0-beta.17
850
+ - graphile-config@0.0.1-beta.8
851
+
852
+ ## 5.0.0-beta.20
853
+
854
+ ### Patch Changes
855
+
856
+ - [#1958](https://github.com/graphile/crystal/pull/1958)
857
+ [`8315e8d01`](https://github.com/graphile/crystal/commit/8315e8d01c118cebc4ebbc53a2f264b958b252ad)
858
+ Thanks [@benjie](https://github.com/benjie)! - EXPORTABLE now accepts a third
859
+ argument, `nameHint`, which is used to hint what variable name to use for the
860
+ given value. Used this in `graphile-export` along with some fixes and
861
+ optimizations to improve the exports further.
862
+ - Updated dependencies
863
+ [[`9f85c614d`](https://github.com/graphile/crystal/commit/9f85c614d48dc745c5fed15333dbb75af7fddc88),
864
+ [`6c6be29f1`](https://github.com/graphile/crystal/commit/6c6be29f12b24782c926b2bc62ed2ede09ac05de),
865
+ [`6c80c44b7`](https://github.com/graphile/crystal/commit/6c80c44b76a5eb30cc2b1555ba81a4b6236f4300),
866
+ [`179d25b09`](https://github.com/graphile/crystal/commit/179d25b09bb3272eeef564067b8e512d8de0112f),
867
+ [`8315e8d01`](https://github.com/graphile/crystal/commit/8315e8d01c118cebc4ebbc53a2f264b958b252ad),
868
+ [`9d53dde72`](https://github.com/graphile/crystal/commit/9d53dde726b7304962e921b88a159649e49156e5)]:
869
+ - @dataplan/pg@0.0.1-beta.17
870
+ - grafast@0.1.1-beta.6
871
+ - graphile-build-pg@5.0.0-beta.20
872
+ - graphile-build@5.0.0-beta.16
873
+ - tamedevil@0.0.0-beta.6
874
+
875
+ ## 5.0.0-beta.19
876
+
877
+ ### Patch Changes
878
+
879
+ - [#1924](https://github.com/graphile/crystal/pull/1924)
880
+ [`ef44c29b2`](https://github.com/graphile/crystal/commit/ef44c29b24a1ad5a042ae1536a4546dd64b17195)
881
+ Thanks [@benjie](https://github.com/benjie)! - 🚨 TypeScript is now configured
882
+ to hide interfaces marked as `@internal`. This may result in a few errors
883
+ where you're accessing things you oughtn't be, but also may hide some
884
+ interfaces that should be exposed - please file an issue if an API you were
885
+ dependent on has been removed from the TypeScript typings. If that API happens
886
+ to be `step.dependencies`; you should first read this:
887
+ https://benjie.dev/graphql/ancestors
888
+
889
+ - [#1931](https://github.com/graphile/crystal/pull/1931)
890
+ [`ec3112c7b`](https://github.com/graphile/crystal/commit/ec3112c7b58d142b4b1d86cbb7de4ca80bbfda00)
891
+ Thanks [@benjie](https://github.com/benjie)! - Add support for deprecating
892
+ arguments to makeExtendSchemaPlugin
893
+
894
+ - Updated dependencies
895
+ [[`49fd8afed`](https://github.com/graphile/crystal/commit/49fd8afed1afe573ea76a2a7a821dfa5d6288e2d),
896
+ [`63dd7ea99`](https://github.com/graphile/crystal/commit/63dd7ea992d30ad711dd85a73a127484a0e35479),
897
+ [`d801c9778`](https://github.com/graphile/crystal/commit/d801c9778a86d61e060896460af9fe62a733534a),
898
+ [`3a2ea80ee`](https://github.com/graphile/crystal/commit/3a2ea80ee470b2aef91366727d7d60a0c65067f5),
899
+ [`ef44c29b2`](https://github.com/graphile/crystal/commit/ef44c29b24a1ad5a042ae1536a4546dd64b17195),
900
+ [`8ea67f891`](https://github.com/graphile/crystal/commit/8ea67f8910693edaf70daa9952e35d8396166f38),
901
+ [`5de3e86eb`](https://github.com/graphile/crystal/commit/5de3e86eba1ddfe5e07732d0325c63e5d72d4b5b),
902
+ [`e20e66ed7`](https://github.com/graphile/crystal/commit/e20e66ed71b499ee5bbf05105f981809fd302212)]:
903
+ - tamedevil@0.0.0-beta.5
904
+ - grafast@0.1.1-beta.5
905
+ - graphile-build-pg@5.0.0-beta.19
906
+ - graphile-build@5.0.0-beta.15
907
+ - @dataplan/pg@0.0.1-beta.16
908
+ - graphile-config@0.0.1-beta.7
909
+
910
+ ## 5.0.0-beta.18
911
+
912
+ ### Patch Changes
913
+
914
+ - [#1916](https://github.com/graphile/crystal/pull/1916)
915
+ [`a2176ea32`](https://github.com/graphile/crystal/commit/a2176ea324db0801249661b30e9c9d314c6fb159)
916
+ Thanks [@benjie](https://github.com/benjie)! - Add `__assertStep` registration
917
+ support to makeGrafastSchema and PostGraphile's makeExtendSchemaPlugin.
918
+
919
+ - [#1917](https://github.com/graphile/crystal/pull/1917)
920
+ [`886833e2e`](https://github.com/graphile/crystal/commit/886833e2e319f23d905d7184ca88fca701b94044)
921
+ Thanks [@benjie](https://github.com/benjie)! - Add `polymorphicBranch` step to
922
+ core to help users deal with simple polymorphic use cases.
923
+
924
+ - [#1920](https://github.com/graphile/crystal/pull/1920)
925
+ [`635af159f`](https://github.com/graphile/crystal/commit/635af159fd412171030dbaee3a82b661c516a9f8)
926
+ Thanks [@benjie](https://github.com/benjie)! - Add ability to set (and infer)
927
+ scopes to makeExtendSchemaPlugin
928
+
929
+ - Updated dependencies
930
+ [[`555a2be03`](https://github.com/graphile/crystal/commit/555a2be037f49bd599abbaafe6e5d5ab190c96d6),
931
+ [`1b6c2f636`](https://github.com/graphile/crystal/commit/1b6c2f6360a316a8dc550c60e28c61deea538f19),
932
+ [`a2176ea32`](https://github.com/graphile/crystal/commit/a2176ea324db0801249661b30e9c9d314c6fb159),
933
+ [`886833e2e`](https://github.com/graphile/crystal/commit/886833e2e319f23d905d7184ca88fca701b94044),
934
+ [`5b2db0c75`](https://github.com/graphile/crystal/commit/5b2db0c7586182523015f8f79fa4d43f98679c1e),
935
+ [`184773382`](https://github.com/graphile/crystal/commit/184773382f074a3b5339e4cfabec55173cd4f1e1),
936
+ [`f97d7976a`](https://github.com/graphile/crystal/commit/f97d7976a683a1e2cb0fed1ce0e30aeff8cc1886)]:
937
+ - @dataplan/pg@0.0.1-beta.15
938
+ - tamedevil@0.0.0-beta.4
939
+ - grafast@0.1.1-beta.4
940
+ - graphile-build-pg@5.0.0-beta.18
941
+ - graphile-build@5.0.0-beta.14
942
+
943
+ ## 5.0.0-beta.17
944
+
945
+ ### Patch Changes
946
+
947
+ - Updated dependencies
948
+ [[`0df5511ac`](https://github.com/graphile/crystal/commit/0df5511ac8b79ea34f8d12ebf8feeb421f8fe971)]:
949
+ - graphile-config@0.0.1-beta.6
950
+ - @dataplan/pg@0.0.1-beta.14
951
+ - grafast@0.1.1-beta.3
952
+ - graphile-build@5.0.0-beta.13
953
+ - graphile-build-pg@5.0.0-beta.17
954
+
955
+ ## 5.0.0-beta.16
956
+
957
+ ### Patch Changes
958
+
959
+ - [#1886](https://github.com/graphile/crystal/pull/1886)
960
+ [`8a76db07f`](https://github.com/graphile/crystal/commit/8a76db07f4c110cecc6225504f9a05ccbcbc7b92)
961
+ Thanks [@benjie](https://github.com/benjie)! - Attempt to catch invalid plan
962
+ resolvers (e.g. those returning `undefined`) sooner.
963
+ - Updated dependencies
964
+ [[`3fdc2bce4`](https://github.com/graphile/crystal/commit/3fdc2bce42418773f808c5b8309dfb361cd95ce9),
965
+ [`aeef362b5`](https://github.com/graphile/crystal/commit/aeef362b5744816f01e4a6f714bbd77f92332bc5),
966
+ [`8a76db07f`](https://github.com/graphile/crystal/commit/8a76db07f4c110cecc6225504f9a05ccbcbc7b92),
967
+ [`bce0636d4`](https://github.com/graphile/crystal/commit/bce0636d424476664672166193a181c83476423a),
968
+ [`f305c3278`](https://github.com/graphile/crystal/commit/f305c327848eb7baef46c5384a7cc5af6f79db8d),
969
+ [`3b558e0c1`](https://github.com/graphile/crystal/commit/3b558e0c110dd49e5d51e49a5ad6463a9ed68ecb),
970
+ [`2ae8d33aa`](https://github.com/graphile/crystal/commit/2ae8d33aa83955649dcd6e7489604b059ed2daf4),
971
+ [`9e1df08b7`](https://github.com/graphile/crystal/commit/9e1df08b702ae32870a8f1324bab37f447cba868),
972
+ [`8a0cdb95f`](https://github.com/graphile/crystal/commit/8a0cdb95f200b28b0ea1ab5caa12b23dce5f374f),
973
+ [`dbd91fdd8`](https://github.com/graphile/crystal/commit/dbd91fdd836f041b6e2ff9d358c6a6f521f43914),
974
+ [`f1d5ad18e`](https://github.com/graphile/crystal/commit/f1d5ad18e1cd0d59b9e74f619ec6b0de57f07b17),
975
+ [`c66c3527c`](https://github.com/graphile/crystal/commit/c66c3527ce2bb38afa37242ecb5a22247efd6db9),
976
+ [`f66cc40b3`](https://github.com/graphile/crystal/commit/f66cc40b3bc5bf2e7f92fe5a6bd5638e2a51ac2b),
977
+ [`f18635a5c`](https://github.com/graphile/crystal/commit/f18635a5cf55845c9534d82bb483e5fbb9ed179e),
978
+ [`1c9f1c0ed`](https://github.com/graphile/crystal/commit/1c9f1c0edf4e621a5b6345d3a41527a18143c6ae),
979
+ [`9fb5cc06e`](https://github.com/graphile/crystal/commit/9fb5cc06ee52165378392969172e6ee8128833f6)]:
980
+ - grafast@0.1.1-beta.2
981
+ - graphile-build-pg@5.0.0-beta.16
982
+ - graphile-build@5.0.0-beta.12
983
+ - graphile-config@0.0.1-beta.5
984
+
985
+ ## 5.0.0-beta.15
986
+
987
+ ### Patch Changes
988
+
989
+ - Updated dependencies
990
+ [[`49fcb0d58`](https://github.com/graphile/crystal/commit/49fcb0d585b31b291c9072c339d6f5b550eefc9f),
991
+ [`2e7fc6449`](https://github.com/graphile/crystal/commit/2e7fc6449c2d08c44c32985811bb2e233a04056b),
992
+ [`7aef73319`](https://github.com/graphile/crystal/commit/7aef73319a8a147c700727be62427e1eefdefbf8)]:
993
+ - grafast@0.1.1-beta.1
994
+ - graphile-build-pg@5.0.0-beta.15
995
+ - graphile-config@0.0.1-beta.4
996
+ - graphile-build@5.0.0-beta.11
997
+
998
+ ## 5.0.0-beta.14
999
+
1000
+ ### Patch Changes
1001
+
1002
+ - Updated dependencies
1003
+ [[`2d447a6b4`](https://github.com/graphile/crystal/commit/2d447a6b45d7db2813bd957f412cd959e2185759)]:
1004
+ - graphile-build-pg@5.0.0-beta.14
1005
+
1006
+ ## 5.0.0-beta.13
1007
+
1008
+ ### Patch Changes
1009
+
1010
+ - Updated dependencies
1011
+ [[`26e0bc726`](https://github.com/graphile/crystal/commit/26e0bc72653cd8dcef4b6cfb3c76876a5e620a12)]:
1012
+ - graphile-build-pg@5.0.0-beta.13
1013
+
1014
+ ## 5.0.0-beta.12
1015
+
1016
+ ### Patch Changes
1017
+
1018
+ - Updated dependencies []:
1019
+ - grafast@0.1.1-beta.0
1020
+ - graphile-build-pg@5.0.0-beta.12
1021
+
1022
+ ## 5.0.0-beta.11
1023
+
1024
+ ### Patch Changes
1025
+
1026
+ - [#1760](https://github.com/graphile/crystal/pull/1760)
1027
+ [`eeccfd675`](https://github.com/graphile/crystal/commit/eeccfd67585a79330197886fdc98335562e08c0a)
1028
+ Thanks [@benjie](https://github.com/benjie)! - makeExtendSchemaPlugin now
1029
+ support specifying scalar details via resolvers/plans
1030
+
1031
+ - [#1768](https://github.com/graphile/crystal/pull/1768)
1032
+ [`264158f03`](https://github.com/graphile/crystal/commit/264158f034e7b6ebc1a9a94d92b7e4fb746c5fac)
1033
+ Thanks [@benjie](https://github.com/benjie)! - Fix `type Foo extends Bar`
1034
+ syntax in makeExtendSchemaPlugin - no longer throws
1035
+ `getTypeByName before 'init' phase` error.
1036
+ - Updated dependencies
1037
+ [[`4a4d26d87`](https://github.com/graphile/crystal/commit/4a4d26d87ce74589429b8ca5126a7bfdf30351b8),
1038
+ [`b2bce88da`](https://github.com/graphile/crystal/commit/b2bce88da26c7a8965468be16fc2d935eadd3434),
1039
+ [`861a8a306`](https://github.com/graphile/crystal/commit/861a8a306ef42a821da19e77903ddd7e8130bfb3),
1040
+ [`9a84bc6dd`](https://github.com/graphile/crystal/commit/9a84bc6dd5b33c1919f75f867df1f61c78686695),
1041
+ [`b728d7fb9`](https://github.com/graphile/crystal/commit/b728d7fb91eb29fbb21d955af5fd9cb4278f6222),
1042
+ [`7d55d2c34`](https://github.com/graphile/crystal/commit/7d55d2c343880d7e665f9743f6ae7e39343c22cc)]:
1043
+ - grafast@0.1.1-beta.0
1044
+ - graphile-build-pg@5.0.0-beta.11
1045
+ - graphile-build@5.0.0-beta.10
1046
+
1047
+ ## 5.0.0-beta.10
1048
+
1049
+ ### Patch Changes
1050
+
1051
+ - [#514](https://github.com/graphile/crystal-pre-merge/pull/514)
1052
+ [`c9848f693`](https://github.com/graphile/crystal-pre-merge/commit/c9848f6936a5abd7740c0638bfb458fb5551f03b)
1053
+ Thanks [@benjie](https://github.com/benjie)! - Update package.json repository
1054
+ information
1055
+
1056
+ - Updated dependencies
1057
+ [[`c9848f693`](https://github.com/graphile/crystal-pre-merge/commit/c9848f6936a5abd7740c0638bfb458fb5551f03b),
1058
+ [`ede1092fe`](https://github.com/graphile/crystal-pre-merge/commit/ede1092fe197719b6fa786f4cfa75f6a1f4c56c1),
1059
+ [`566983fbd`](https://github.com/graphile/crystal-pre-merge/commit/566983fbd99c4b2df8c4ebd6260521670a2b7dfc),
1060
+ [`409bf6071`](https://github.com/graphile/crystal-pre-merge/commit/409bf607180d4d8faec658c803e5ec4d1a00c451)]:
1061
+ - graphile-build-pg@5.0.0-beta.10
1062
+ - graphile-build@5.0.0-beta.9
1063
+ - graphile-config@0.0.1-beta.3
1064
+ - grafast@0.0.1-beta.8
1065
+ - tamedevil@0.0.0-beta.3
1066
+
3
1067
  ## 5.0.0-beta.9
4
1068
 
5
1069
  ### Patch Changes
@@ -501,7 +1565,6 @@
501
1565
  resources, and more. So, we've renamed lots of things as part of the API
502
1566
  stabilization work. You're probably only affected by the first 2 bullet
503
1567
  points.
504
-
505
1568
  - `pgConfigs` -> `pgServices` (also applies to related `pgConfig` terms such
506
1569
  as `makePgConfig` -> `makePgService`, `MakePgConfigOptions` ->
507
1570
  `MakePgServiceOptions`, etc) - see your `graphile.config.ts` or equivalent