Remove Graph Path from Connection information
The Graph Path was used by AgensGraph to know which Graph to run the cypher query against.
MATCH (n) RETURN n;
Since AGE, currently makes the user provide the graph in the query, this is no longer relevant.
SELECT * FROM cypher('graph', $$ MATCH (n) RETURN n $$) as (a agtype);

Please assign, I'll work on this
this also requires graph name to be extracted from the input with every query in order to retrieve meta data, if the graph name changes
I assigned you. Please start the work.
@marodins Instead of extracting the metadata every query is it possible to retrieve the metadata while connecting for all graphs?
@JoshInnis Definitely, that's a great idea, will implement it that way
PR created, feature complete