Skip to content

Instantly share code, notes, and snippets.

@cj2001
Created November 2, 2021 18:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cj2001/bb466de8308fb126ed59f990c7811f8d to your computer and use it in GitHub Desktop.
Save cj2001/bb466de8308fb126ed59f990c7811f8d to your computer and use it in GitHub Desktop.
Create CORA graph projection
// Create in-memory graph of (Paper)-[:CITES]-(Paper)
CALL gds.graph.create(
'cora',
'Paper',
{CITES:
{
orientation: 'UNDIRECTED'
}
}
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment