Package

org.opencypher.spark.api

value

Permalink

package value

Visibility
  1. Public
  2. All

Type Members

  1. case class CAPSNode(id: Long, labels: Set[String] = Set.empty, properties: CypherMap = CypherMap.empty) extends CypherNode[Long] with Product with Serializable

    Permalink

    Representation of a Cypher node in the CAPS implementation.

    Representation of a Cypher node in the CAPS implementation. A node contains an id of type Long, a set of string labels and a map of properties.

    id

    the id of the node, unique within the containing graph.

    labels

    the labels of the node.

    properties

    the properties of the node.

  2. case class CAPSRelationship(id: Long, source: Long, target: Long, relType: String, properties: CypherMap = CypherMap.empty) extends CypherRelationship[Long] with Product with Serializable

    Permalink

    Representation of a Cypher relationship in the CAPS implementation.

    Representation of a Cypher relationship in the CAPS implementation. A relationship contains an id of type Long, ids of its adjacent nodes, a relationship type and a map of properties.

    id

    the id of the relationship, unique within the containing graph.

    source

    the id of the source node.

    target

    the id of the target node.

    relType

    the relationship type.

    properties

    the properties of the node.

Ungrouped