We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
It would be very nice to have example of correct usage of the function age_graph_stats. Please help.
The text was updated successfully, but these errors were encountered:
-- -- graph_stats command -- -- what's in the current graphs? SELECT * FROM cypher('ag_graph_1', $$ RETURN graph_stats('ag_graph_1') $$) AS (result agtype); result -------------------------------------------------------------------------- {"graph": "ag_graph_1", "num_loaded_edges": 0, "num_loaded_vertices": 3} (1 row) SELECT * FROM cypher('ag_graph_1', $$ RETURN graph_stats('ag_graph_2') $$) AS (result agtype); result -------------------------------------------------------------------------- {"graph": "ag_graph_2", "num_loaded_edges": 0, "num_loaded_vertices": 2} (1 row) SELECT * FROM cypher('ag_graph_1', $$ RETURN graph_stats('ag_graph_3') $$) AS (result agtype); result -------------------------------------------------------------------------- {"graph": "ag_graph_3", "num_loaded_edges": 0, "num_loaded_vertices": 1} (1 row)
Sorry, something went wrong.
Right now, that is all it shows.
Great thank you!
No branches or pull requests
It would be very nice to have example of correct usage of the function age_graph_stats.
Please help.
The text was updated successfully, but these errors were encountered: