Describes the result of executing a Cypher query.
The Cypher Session is the main API for a Cypher-based application.
The Cypher Session is the main API for a Cypher-based application. It manages graphs which can be queried using Cypher. Graphs can be read from / written to different data sources (e.g. CSV) and also stored in / retrieved from the session-local storage.
A graph name is used to address a specific graph within a Namespace and is used for lookups in the org.opencypher.okapi.api.graph.CypherSession.
A graph name is used to address a specific graph within a Namespace and is used for lookups in the org.opencypher.okapi.api.graph.CypherSession.
string representing the graph name
Inter-graph operations between org.opencypher.okapi.api.graph.PropertyGraphs.
A namespace is used to address different org.opencypher.okapi.api.io.PropertyGraphDataSource implementations within a org.opencypher.okapi.api.graph.CypherSession.
A namespace is used to address different org.opencypher.okapi.api.io.PropertyGraphDataSource implementations within a org.opencypher.okapi.api.graph.CypherSession.
string representing the namespace
A Property Graph as defined by the openCypher Property Graph Model.
A Property Graph as defined by the openCypher Property Graph Model.
A graph is always tied to and managed by a session. The lifetime of a graph is bounded by the session lifetime.
A graph always has a schema, which describes the properties of the entities in the graph, grouped by the labels and relationship types of the entities.
A qualified graph name is used in a Cypher query to address a specific graph within a namespace.
A qualified graph name is used in a Cypher query to address a specific graph within a namespace.
Example:
FROM GRAPH AT 'myNamespace.myGraphName' MATCH (n) RETURN n
Here, {{myNamespace.myGraphName}} represents a qualified graph name.
namespace part of the qualified graph name
graph name part of the qualified graph name
Describes the result of executing a Cypher query.
The result of a Cypher query consists of a table of records and a set of named graphs.