c

neotypes.query

DeferredQueryBuilder

final class DeferredQueryBuilder extends AnyRef

A builder for constructing instance of DeferredQuery.

The idiomatic way to use the DeferredQueryBuilder is with the c string interpolator.

Source
query.scala
Example:
  1. val name = "John"
    val born = 1980
    
    val query = c"CREATE (: Person { name: ${name}, born: ${born} })"
See also

The parametrized queries documentation.

Linear Supertypes
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. DeferredQueryBuilder
  2. AnyRef
  3. 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. def +(that: String): DeferredQueryBuilder

    Concatenate a java.lang.String with this DeferredQueryBuilder.

    Concatenate a java.lang.String with this DeferredQueryBuilder.

    that

    the java.lang.String to be concatenated.

    returns

    A new DeferredQueryBuilder.

  4. def +(that: DeferredQueryBuilder): DeferredQueryBuilder

    Concatenate another DeferredQueryBuilder with this one.

    Concatenate another DeferredQueryBuilder with this one.

    that

    the DeferredQueryBuilder to be concatenated.

    returns

    A new DeferredQueryBuilder.

  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @IntrinsicCandidate() @native()
  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  10. def execute: ExecuteQuery

    Creates a ExecuteQuery.

  11. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  12. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  13. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  14. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  16. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  17. def query[T](mapper: ResultMapper[T]): DeferredQuery[T, Simple.type]

    Creates a DeferredQuery using the provided neotypes.mappers.ResultMapper.

  18. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  19. def toString(): String
    Definition Classes
    AnyRef → Any
  20. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  21. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  22. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

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 AnyRef

Inherited from Any

Ungrouped