Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(api-core): support label & property filtering for both edge and vertex & support kout dfs mode #2295

Merged
merged 19 commits into from
Sep 10, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: format code
  • Loading branch information
DanGuge committed Sep 9, 2023
commit 8ed4b074cebf3ecf94769faefd42dd6f2cfe5bbb
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,6 @@ private static class Request {
public boolean withPath = false;
@JsonProperty("with_edge")
public boolean withEdge = false;

@JsonProperty("algorithm")
DanGuge marked this conversation as resolved.
Show resolved Hide resolved
DanGuge marked this conversation as resolved.
Show resolved Hide resolved
public String algorithm = HugeTraverser.TRAVERSE_MODE_BFS;
DanGuge marked this conversation as resolved.
Show resolved Hide resolved

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1003,7 +1003,5 @@ public Set<Edge> getEdges(Iterator<Id> vertexIter) {
}
return edges;
}

}

}