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

[ALGOS-266] feat(algos): Fix bugs for template query; #166

Merged
merged 2 commits into from
Jul 22, 2024
Merged
Changes from all commits
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
10 changes: 3 additions & 7 deletions GDBMS_ALGO/community/label_prop.gsql
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ CREATE TEMPLATE QUERY GDBMS_ALGO.community.label_prop(
BOOL print_results = TRUE,
STRING result_attribute = "",
STRING file_path=""
) FOR GRAPH MyGraph SYNTAX V1 {
) SYNTAX V1 {

/*
First Author: [email protected]
Expand Down Expand Up @@ -170,12 +170,8 @@ CREATE TEMPLATE QUERY GDBMS_ALGO.community.label_prop(
@@comm_sizes_map += (s.@community_id -> 1)
END,
IF file_path != "" THEN
IF v_type_set.size() == 1 THEN
f.println(s.id, s.@community_id)
ELSE
VERTEX node = s.@community_id,
f.println(s.type, s, node.type, node)
END
VERTEX node = s.@community_id,
f.println(s.type, s, node.type, node)
END
LIMIT print_limit;

Expand Down
Loading