Graph Data Science

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, relationshipCount
cypher
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

All glossary terms