You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: modules/ROOT/pages/deprecations.adoc
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,11 +9,11 @@ The following products and applications are deprecated:
9
9
10
10
== GRANDstack starter app
11
11
12
-
The main purpose of the GRANDstack starter app was to demonstrate how the Neo4j Labs GraphQL library could be used in the context of a full-stack application using React and Apollo client.
12
+
The main purpose of the GRANDstack starter app was to demonstrate how the Neo4j Labs GraphQL Library could be used in the context of a full-stack application using React and Apollo client.
13
13
It allowed developers to build applications more quickly and with a bigger focus on functionality, while also helping users who already had an existing frontend and needed a new back end.
14
14
15
15
Over time, the GRANDstack starter app grew to support other frameworks such as Flutter and Angular, thus the need to revisit its scope.
16
-
The intention is to replace this project with a new starter application product, which will focus on the back end and the configuration of the GraphQL library, as well as help developers with their frontend.
16
+
The intention is to replace this project with a new starter application product, which will focus on the back end and the configuration of the GraphQL Library, as well as help developers with their frontend.
17
17
18
18
In the meantime, the `create-grandstack-app` npm package has been marked as deprecated.
19
19
It can still be used to skeleton a GRANDstack app, but the user will be warned that the package is deprecated.
=== Removed invalid filters in aggregation filter inputs
60
+
61
+
In previous versions of the library, the input used for aggregation filters contained filters that did not rely on aggregating functions.
62
+
These filters were deprecated in previous library versions and are removed from the schema.
63
+
64
+
To see the aggregating functions supported on filtering refer to xref:/queries-aggregations/filtering.adoc#_aggregation_filtering[Aggregation filtering],
65
+
66
+
=== Removed string aggregation filters not using `_LENGTH`
67
+
68
+
Since string aggregations are computed using length, they now require the `_LENGTH` suffix for all string aggregation filters.
=== The deprecated `_NOT` filters are no longer supported
24
169
25
170
The following deprecated `NOT` filters are removed from the schema since they are no longer supported:
@@ -33,8 +178,7 @@ The following deprecated `NOT` filters are removed from the schema since they ar
33
178
- `node_NOT`
34
179
- `edge_NOT`
35
180
36
-
37
-
To achieve the same in version 6.x of the GraphQL library, use the xref:/queries-aggregations/filtering.adoc#_boolean_operators[boolean `NOT` operator] instead.
181
+
To achieve the same in version 6.x of the GraphQL Library, use the xref:/queries-aggregations/filtering.adoc#_boolean_operators[boolean `NOT` operator] instead.
38
182
39
183
[cols="1,1"]
40
184
|===
@@ -68,7 +212,7 @@ The following deprecated `_NOT` filters on `@relationship` are removed and no lo
68
212
- `actors_NOT`
69
213
- `actorsConnection_NOT`
70
214
71
-
To achieve the same in version 6.x of the GraphQL library, use the `NONE` quantifier.
215
+
To achieve the same in version 6.x of the GraphQL Library, use the `NONE` quantifier.
72
216
73
217
[cols="1,1"]
74
218
|===
@@ -94,6 +238,90 @@ query {
94
238
----
95
239
|===
96
240
241
+
=== Removed the bookmark field from the schema
242
+
243
+
The bookmark field has been removed from the mutation `info` responses (`CreateInfo`, `UpdateInfo`, `DeleteInfo`) as it is no longer required.
244
+
245
+
246
+
=== Changed the `excludeDeprecatedFields` setting in the Neo4jFeaturesSettings
247
+
248
+
As in version 6.x many of the deprecated fields have been removed, the `excludeDeprecatedFields` setting has been modified to reflect these changes.
249
+
250
+
The following fields have been removed:
251
+
252
+
- `bookmark`
253
+
- `negationFilters`
254
+
- `arrayFilters`
255
+
- `stringAggregation`
256
+
- `aggregationFilters`
257
+
- `nestedUpdateOperationsFields`
258
+
259
+
The following fields have been added:
260
+
261
+
262
+
- `implicitEqualFilters`
263
+
- `deprecatedOptionsArgument`
264
+
- `directedArgument`
265
+
266
+
== Additions
267
+
268
+
=== Added the `_EQ` filter as an alternative to the deprecated implicit equal filters
269
+
270
+
The `count_EQ` filter is now available as an alternative to the deprecated `count` filter.
0 commit comments