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/migration/index.adoc
+15-15Lines changed: 15 additions & 15 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -145,9 +145,9 @@ mutation UpdatePeople {
145
145
----
146
146
|===
147
147
148
-
=== Changed the sort argument for interfaces Connection fields
148
+
=== Changed the sort argument for interfaces connection fields
149
149
150
-
The sort argument for interfaces Connection fields is now a list of nonnullable element.
150
+
The sort argument for interfaces connection fields is now a list of non-nullable elements.
151
151
152
152
[cols="1,1"]
153
153
|===
@@ -238,18 +238,17 @@ query {
238
238
----
239
239
|===
240
240
241
-
=== The bookmark field has been removed from the schema
241
+
=== Removed the bookmark field from the schema
242
242
243
-
The bookmark field has been removed from the Mutation info response as it is no longer required.
243
+
The bookmark field has been removed from the mutation information responses (CreateInfo, UpdateInfo, DeleteInfo) as it is no longer required.
244
244
245
245
246
-
=== The `excludeDeprecatedFields` setting in the Neo4jFeaturesSettings has been changed
246
+
=== Changed the `excludeDeprecatedFields` setting in the Neo4jFeaturesSettings
247
247
248
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
249
250
250
The following fields have been removed:
251
251
252
-
253
252
- `bookmark`
254
253
- `negationFilters`
255
254
- `arrayFilters`
@@ -266,7 +265,7 @@ The following fields have been added:
266
265
267
266
== Additions
268
267
269
-
=== Added `count_EQ` as alternative to the deprecated count
268
+
=== Added `count_EQ` as an alternative to the deprecated `count` filter
270
269
271
270
The `count_EQ` filter is now available as an alternative to the deprecated `count` filter.
272
271
@@ -294,9 +293,9 @@ a|
294
293
----
295
294
|===
296
295
297
-
=== Added the _EQ filter as alternative of the deprecated implicit equal filters
296
+
=== Added the `_EQ` filter as an alternative to the deprecated implicit "equal" filter
298
297
299
-
The `_EQ` filter is now available as an alternative to the deprecated implicit equal filters.
298
+
The `_EQ` filter is now available as an alternative to the deprecated implicit "equal" filter.
300
299
301
300
[cols="1,1"]
302
301
|===
@@ -399,9 +398,9 @@ type Person @node {
399
398
400
399
=== Deprecated the implicit equality filters
401
400
402
-
Previously when a field in a filter was present in filter without specifying the operator, it was treated as an equality filter.
403
-
404
-
This behavior is now deprecated and will be removed in the future. Please, use the `_EQ` filter.
401
+
Previously, if a field was present in a filter without specifying the operator, it was treated as an equality filter.
402
+
This behavior is now deprecated and will be removed in the future.
403
+
Use the `_EQ` filter instead.
405
404
406
405
[cols="1,1"]
407
406
|===
@@ -429,7 +428,8 @@ a|
429
428
430
429
=== Deprecated pagination `options` argument
431
430
432
-
The `options` argument in query and `@relationship` fields is deprecated and will be removed in the future. Use the `limit`, `offset` and `sort` arguments instead.
431
+
The `options` argument in query and `@relationship` fields is deprecated and will be removed in the future.
432
+
Use the `limit`, `offset` and `sort` arguments instead.
433
433
434
434
[cols="1,1"]
435
435
|===
@@ -458,7 +458,7 @@ a|
458
458
459
459
=== Deprecated `directed` argument in `@relationship` fields
460
460
461
-
The `directed` argument was used to change the query direction of the relationship field at the query time, for instance:
461
+
The `directed` argument was used to change the query direction of the relationship field at query time, for instance:
462
462
463
463
464
464
[source, graphql, indent=0]
@@ -474,4 +474,4 @@ The `directed` argument was used to change the query direction of the relationsh
474
474
----
475
475
476
476
The `directed` argument in `@relationship` fields is deprecated and will be removed in the future.
477
-
Please configure this using `queryDirection` and `direction` arguments of the `@relationship` directive.
477
+
Configure the query direction via the `queryDirection` and `direction` arguments of the `@relationship` directive instead.
0 commit comments