Skip to content

Commit

Permalink
feat: create documentation
Browse files Browse the repository at this point in the history
Signed-off-by: Otavio Santana <otaviopolianasantana@gmail.com>
  • Loading branch information
otaviojava committed Mar 9, 2024
1 parent e1f3942 commit 06ed27d
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -97,7 +97,7 @@ public <K> Collection<EdgeEntity> edgesById(K id, Direction direction, String...
if (vertices.hasNext()) {
List<Edge> edges = new ArrayList<>();
vertices.next().edges(direction, labels).forEachRemaining(edges::add);
return edges.stream().map(converter()::toEdgeEntity).toList();
return edges.stream().map(e ->EdgeEntity.of(converter(), e)).toList();
}
return Collections.emptyList();
}
Expand Down

0 comments on commit 06ed27d

Please sign in to comment.