How to download the entire graph from neo4j web?

Hi Team,
I want to download the entire graph in the csv without using the any query mentioned in the explore page option. I mena for different query strategies we are ending up with different graphs right. But i want to download the enitre graph . Is there any way for that?
For example the following are the different query formations for different graphs.

So i need a help that how can i save the whole graph....?

Depending on what you want to do, you have several options:

apoc.export.csv.all

apoc.export.csv.query

or CLI:

$ neo4j-admin dump --to=exported_data.dump

If you want some other complete data dump:

CALL apoc.export.cypher.all("database.cypher", {format: "cypher-shell"});

with:

$ cypher-shell -u neo4j -p password -f import/database.cypher