Skip to content

Commit

Permalink
replace mygraph with _graphname_
Browse files Browse the repository at this point in the history
  • Loading branch information
DanHu committed Sep 3, 2019
1 parent 182fb09 commit a237cfb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sample_code/clean_unknown_vertices/delete_unknown_edge.gsql
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use graph mygraph
use graph _graphname_
drop query DeleteUnknownEdge
create query DeleteUnknownEdge(string sourceTypeName, string targetTypeName, string edgeTypeName, bool dryrun = true) for Graph mygraph {
create query DeleteUnknownEdge(string sourceTypeName, string targetTypeName, string edgeTypeName, bool dryrun = true) for Graph _graphname_ {
SetAccum<vertex> @@vSet;
ListAccum<vertex> @@vlist;
string msg;
Expand Down

0 comments on commit a237cfb

Please sign in to comment.