Packages

case class Query[TLabel](triples: (TLabel, TLabel, TLabel)*)(implicit evidence$1: ClassTag[TLabel]) extends Product with Serializable

The Query class provides a means for entering queries as a sequence of triples. A triple may be viewed as (subject, predicate, object), (s, p, o) or (source vertex, edge, target vertex). Support for wildcards, regexes and variables are provided.

triples

the sequence of triples forming the query

Linear Supertypes
Serializable, Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Query
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Query(triples: (TLabel, TLabel, TLabel)*)(implicit arg0: ClassTag[TLabel])

    triples

    the sequence of triples forming the query

Value Members

  1. def buildGraph(inverse: Boolean = false): MGraph[TLabel]

    Build an MGraph from the sequence of triples.

    Build an MGraph from the sequence of triples.

    inverse

    whether to create parent references

  2. val triples: (TLabel, TLabel, TLabel)*