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
=== 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,7 +178,6 @@ 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
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"]
@@ -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