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
feat: add count method to DefaultTinkerpopGraphDatabaseManager
Implemented a count method for SelectQuery to enhance
query capabilities and improve performance in counting
entities within the graph database.
Signed-off-by: Maximillian Arruda <[email protected]>
Copy file name to clipboardExpand all lines: jnosql-tinkerpop/src/main/java/org/eclipse/jnosql/databases/tinkerpop/communication/DefaultTinkerpopGraphDatabaseManager.java
+29-18Lines changed: 29 additions & 18 deletions
Original file line number
Diff line number
Diff line change
@@ -127,37 +127,32 @@ public Iterable<CommunicationEntity> update(Iterable<CommunicationEntity> entiti
127
127
publicvoiddelete(DeleteQueryquery) {
128
128
Objects.requireNonNull(query, "delete is required");
0 commit comments