implicit session
An Aura Graph Analytics session created together with its projection, in a single call.
Example
One call, which starts the session and scans the projection into it.
cypher
CALL gds.graph.project(
'directors-graph',
['Director', 'Movie'],
'DIRECTED',
{
memory: '2GB',
ttl: 'PT30M'
}
)
YIELD nodeCount, relationshipCount
RETURN nodeCount, relationshipCountThe config map carries memory and ttl where it would otherwise carry the id of a session that already exists.
Lessons that use this term
The lesson and course links below open in a new tab.
2 lessons use this term. Results are ordered by term density.
Aura Graph Analytics fundamentals6 mentions
- Implicit sessionsAura Graph Analytics in the Aura WorkspaceHow to spin up a session and projection at the same time — known as an "implicit session5 mentions
- Train and publish machine learning modelsAura Graph Analytics in the Aura WorkspaceYou cannot store models in an implicit session, so run the following command to start an explicit1 mention