Skip to content

Commit be77e66

Browse files
Merge branch 'migration-guide-7' of github.com:neo4j/docs-graphql into migration-guide-7
2 parents ee66ebe + 6662200 commit be77e66

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

modules/ROOT/pages/migration/index.adoc

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -328,11 +328,10 @@ For example, an actor playing multiple roles in the same movie.
328328

329329
=== Changed behavior for multiple relationships between nodes
330330

331-
The way multiple relationships between the same two nodes are handled has changed:
331+
The way multiple relationships are handled between the same two nodes has changed:
332332

333-
* In entity query fields (like `movies`), duplicate nodes will be removed and only distinct results will be returned, regardless of how many relationships exist between the nodes.
334-
335-
* In connection query fields (like `moviesConnection`), all relationships will be represented individually. This allows for projecting relationship properties for each connection between the two nodes.
333+
* In entity query fields (like `movies`), duplicate nodes are removed and only distinct results are returned, regardless of how many relationships exist between the nodes.
334+
* In connection query fields (like `moviesConnection`), all relationships are represented individually. This allows for projecting relationship properties for each connection between the two nodes.
336335

337336
For example, consider a scenario where Eddie Murphy played multiple roles in the same movie:
338337

@@ -979,7 +978,8 @@ const neoSchema = new Neo4jGraphQL({
979978

980979
=== Deprecated aggregation filters outside connection fields
981980

982-
The aggregation filters outside connection fields are now deprecated. You should use the aggregation filters within connection input fields instead:
981+
The aggregation filters outside connection fields are now deprecated.
982+
Use the aggregation filters within connection input fields instead:
983983

984984
[cols="1,1"]
985985
|===
@@ -1017,9 +1017,10 @@ const neoSchema = new Neo4jGraphQL({
10171017
});
10181018
----
10191019

1020-
=== Deprecated Aggregation filters outside dedicated input
1020+
=== Deprecated aggregation filters outside dedicated input
10211021

1022-
Aggregation filters outside dedicated input like `_AVERAGE_GT` are now deprecated. You should use the dedicated input object versions:
1022+
Aggregation filters outside dedicated input like `_AVERAGE_GT` are now deprecated.
1023+
Use the dedicated input object versions instead:
10231024

10241025
[cols="1,1"]
10251026
|===

0 commit comments

Comments
 (0)