graph catalog
The set of projections currently held in memory, each listed and dropped by name.
Example
Everything currently in memory, and then one of them removed.
cypher
CALL gds.graph.list()
YIELD graphName, nodeCount, relationshipCount
RETURN graphName, nodeCount, relationshipCountcypher
CALL gds.graph.drop('people')gds.graph.list() names every projection the catalog holds. gds.graph.drop('people') removes that one and frees the memory it was using.
Lessons that use this term
The lesson and course links below open in a new tab.
No published lesson uses this term yet.