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.
3 lessons use this term. Results are ordered by term density.
Get started with Graph Data Science6 mentions
- Challenge: Clean your catalogGDS basic conceptsyou begin, let's recap what you've learned about graph catalog2 mentions
- Module recap and what's nextGDS basic concepts1 mention
- List and drop graphsGDS basic conceptsprojection gets stored in GDS's graph catalog—an in-memory store of all your projected3 mentions