c

neotypes.query

ExecuteQuery

final class ExecuteQuery extends BaseQuery

Represents a query that doesn't produce results when executed.

Source
query.scala
Linear Supertypes
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ExecuteQuery
  2. BaseQuery
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

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. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @IntrinsicCandidate() @native()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  8. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  9. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  10. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  11. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  12. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  13. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  14. val params: Map[String, QueryParam]

    The parameters that will be substituted into the query statement.

    The parameters that will be substituted into the query statement.

    Definition Classes
    ExecuteQueryBaseQuery
  15. val query: String

    The query statement that will be executed.

    The query statement that will be executed.

    Definition Classes
    ExecuteQueryBaseQuery
  16. def resultSummary[F[_]](tx: AsyncTransaction[F]): F[ResultSummary]

    Executes the query and returns its org.neo4j.driver.summary.ResultSummary.

    Executes the query and returns its org.neo4j.driver.summary.ResultSummary.

    F

    async type.

    tx

    neotypes transaction.

    returns

    An asyncual value that will execute the query.

    Example:
    1. val result: F[ResultSummary] = driver.transact { tx =>
        "CREATE (p:Person { name: 'Charlize Theron', born: 1975 })"
          .execute
          .resultSummary(tx)
      }
  17. def resultSummary[F[_]](driver: AsyncDriver[F], config: TransactionConfig = TransactionConfig.default): F[ResultSummary]

    Executes the query and returns its org.neo4j.driver.summary.ResultSummary.

    Executes the query and returns its org.neo4j.driver.summary.ResultSummary.

    F

    async type.

    driver

    neotypes driver.

    config

    neotypes transaction config.

    returns

    An asyncual value that will execute the query.

    Example:
    1. val result: F[ResultSummary] =
        "CREATE (p:Person { name: 'Charlize Theron', born: 1975 })"
          .execute
          .resultSummary(driver)
  18. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  19. final def toString(): String
    Definition Classes
    BaseQuery → AnyRef → Any
  20. def void[F[_]](tx: AsyncTransaction[F]): F[Unit]

    Executes the query and ignores its output.

    Executes the query and ignores its output.

    F

    async type.

    tx

    neotypes transaction.

    returns

    An asyncual value that will execute the query.

    Example:
    1. val result: F[Unit] = driver.transact { tx =>
        "CREATE (p:Person { name: 'Charlize Theron', born: 1975 })"
          .execute
          .void(tx)
      }
  21. def void[F[_]](driver: AsyncDriver[F], config: TransactionConfig = TransactionConfig.default): F[Unit]

    Executes the query and ignores its output.

    Executes the query and ignores its output.

    F

    async type.

    driver

    neotypes driver.

    config

    neotypes transaction config.

    returns

    An asyncual value that will execute the query.

    Example:
    1. val result: F[Unit] =
        "CREATE (p:Person { name: 'Charlize Theron', born: 1975 })"
          .execute
          .void(driver)
  22. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  23. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  24. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  25. def withParams(params: Map[String, QueryParam]): ExecuteQuery

    Creates a new query with an updated set of parameters.

    Creates a new query with an updated set of parameters.

    params

    QueryParams to be added.

    returns

    a new query with params added to existing params.

    Definition Classes
    ExecuteQueryBaseQuery
    Note

    If params contains a key that is already present in the current query, the new value one will override the previous one.

Deprecated Value Members

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

    (Since version 9)

Inherited from BaseQuery

Inherited from AnyRef

Inherited from Any

Ungrouped