What is a GQL session?
A GQL session can be initiated from a GQL client, such as GQL Playground, or a graph database driver. Sessions can be created either explicitly or implicitly, depending on the context and the actions taken by the client.
Explicit session creation
A session is explicitly created when the GQL client sends a specific command to initiate a session. This is often used in scenarios where precise control over session management is required.
Implicit session creation
For instance, in GQL Playground, a session is automatically created whenever a query is executed. This implicit creation ensures that users can seamlessly interact with the graph database without needing to manually manage session initiation.
Session management
The context of sessions can be managed by GQL or the settings from a GQL client. In this book, we will explore how to manage sessions with GQL queries.
A GQL session is capable of handling multiple consecutive requests...