Packages

class Graph extends AnyRef

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Graph
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new Graph(name: String)
  2. new Graph(name: String, config: ArangoDBConfig)
  3. new Graph(name: String, server: ArangoDBServer)
  4. new Graph(name: String, managed: Boolean)
  5. new Graph(name: String, config: ArangoDBConfig, managed: Boolean)
  6. new Graph(name: String, server: ArangoDBServer, managed: Boolean)
  7. new Graph(db: ArangoDB, managed: Boolean)

Type Members

  1. case class AppliedUpgrades(labels: Set[String]) extends Product with Serializable

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def afterStartup(upgrades: List[DatabaseUpgrade]): IO[Unit]
    Attributes
    protected
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @IntrinsicCandidate()
  7. def collections: List[DocumentCollection[_ <: Document[_], _ <: DocumentModel[_]]]
  8. def databaseName: String
  9. def doUpgrades(allUpgrades: List[DatabaseUpgrade], upgrades: List[DatabaseUpgrade], stillBlocking: Boolean, appliedUpgrades: Set[String]): IO[Unit]
    Attributes
    protected
  10. def drop(): IO[Boolean]
  11. def edge[E <: Edge[E, From, To], M <: EdgeModel[E, From, To], From, To](model: M, managed: Boolean = this.managed): EdgeCollection[E, M, From, To]
  12. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  14. def execute(query: Query): IO[Unit]

    Executes the query ignoring the result.

    Executes the query ignoring the result. Useful for queries that modify data but don't return anything useful.

  15. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  16. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  17. def init(createDatabase: Boolean = true): IO[Unit]
  18. def initialized: Boolean
  19. def initted[Return](f: => Return): Return
    Attributes
    protected
  20. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  21. def keyStore(collectionName: String, managed: Boolean = this.managed): DatabaseStore
  22. val managed: Boolean
  23. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  24. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  25. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  26. def query[T](query: Query, converter: (Json) => T): QueryBuilder[T]
  27. def query[T](query: Query)(implicit rw: RW[T]): QueryBuilder[T]

    Creates a QueryBuilder[T] to manage execution of the supplied query.

    Creates a QueryBuilder[T] to manage execution of the supplied query.

    T

    the type of results

    query

    the query to create the builder for

    returns

    QueryBuilder[T]

  28. def server: ArangoDBServer
  29. def shutdown(): IO[Unit]
  30. val store: DatabaseStore
  31. def storeCollectionName: String
    Attributes
    protected
  32. def stores: List[DatabaseStore]
  33. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  34. def toString(): String
    Definition Classes
    AnyRef → Any
  35. lazy val transaction: ArangoDBTransaction[Collection]
  36. def truncate(): IO[Unit]
  37. def upgrades: List[DatabaseUpgrade]
  38. def vertex[D <: Document[D], M <: DocumentModel[D]](model: M, managed: Boolean = this.managed): DocumentCollection[D, M]
  39. def view(name: String, links: List[ViewLink], managed: Boolean = this.managed, primarySort: List[Sort] = Nil, primarySortCompression: SortCompression = SortCompression.LZ4, consolidationInterval: FiniteDuration = 1.second, commitInterval: FiniteDuration = 1.second, cleanupIntervalStep: Int = 2): View
  40. def views: List[View]
  41. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  42. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  43. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  44. object AppliedUpgrades extends Serializable

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from AnyRef

Inherited from Any

Ungrouped