Hi this same parameter query was working fine on an earlier Virtual Box install but when I reloaded my graph into into a Docker session and tried to run it in Graph Studio i’m faced with this error.
“Failed to convert user vertex id for parameter g”
Here’s the query I have in a file called show_edges.gsql
CREATE QUERY show_edges(VERTEX g) FOR GRAPH nwis {
ListAccum @@edgeList;
Start = {g};
show_Edges = SELECT t
FROM Start:s -(requires:e) ->goals:t
accum @@edgeList += e;
print @@edgeList;
}
=============================================
I have other non parameter queries that are working fine but I can’t get any of parameterized queries working like this one above. Please help thanks!
William Lee