Skip to content

Commit

Permalink
[4.x] Replace deprecated session.readTransaction on session.executeRe…
Browse files Browse the repository at this point in the history
…ad (#8420)
  • Loading branch information
Captain1653 authored Feb 26, 2024
1 parent 08ad2a0 commit 06359da
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ List<Movie> findAll() { // <2>
return m, collect(d) as directors, collect({name:a.name, roles: r.roles}) as actors
""";

return session.readTransaction(tx -> tx.run(query).list(r -> {
return session.executeRead(tx -> tx.run(query).list(r -> {
var movieNode = r.get("m").asNode();

var directors = r.get("directors").asList(v -> {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ List<Movie> findAll() { // <2>
return m, collect(d) as directors, collect({name:a.name, roles: r.roles}) as actors
""";

return session.readTransaction(tx -> tx.run(query).list(r -> {
return session.executeRead(tx -> tx.run(query).list(r -> {
var movieNode = r.get("m").asNode();

var directors = r.get("directors").asList(v -> {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
/*
* Helidon changes are under the copyright of:
*
* Copyright (c) 2021, 2023 Oracle and/or its affiliates.
* Copyright (c) 2021, 2024 Oracle and/or its affiliates.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -74,7 +74,7 @@ public List<Movie> findAll(){
+ "match (m) <- [r:ACTED_IN] - (a:Person) "
+ "return m, collect(d) as directors, collect({name:a.name, roles: r.roles}) as actors";

return session.readTransaction(tx -> tx.run(query).list(r -> {
return session.executeRead(tx -> tx.run(query).list(r -> {
var movieNode = r.get("m").asNode();

var directors = r.get("directors").asList(v -> {
Expand Down

0 comments on commit 06359da

Please sign in to comment.