datomisca

Query

Related Doc: package datomisca

object Query extends QueryMacros

Provides methods for parsing Datalog queries and rules.

Source
query.scala
Linear Supertypes
QueryMacros, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Query
  2. QueryMacros
  3. AnyRef
  4. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

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. macro def apply(edn: String): AbstractQuery

    Parse a string as a Datalog query.

    Parse a string as a Datalog query.

    val query = Query("""
      [:find ?e
       :where [?e :db/doc]]
    """)

    Implemented as a macro. The string is parsed at compile time, so any parsing errors will result in compliation failure. The parsing checks that the string is valid EDN, and a further round of minimal validate is performed to ensure that the EDN has the expected structure to be a Datalog query.

    The macro also determines the input and output arity of the query. The declared return type of the macro is AbstractQuery, but the concrete return type is of the form

    TypedQueryN[AnyRef, ..., TupleN[Any, ...]]

    When the resulting query is executed, it returns a Iterable[TupleN[Any, ...]]

    edn

    a Datalog query as a string

    returns

    an arity-typed query as a data structure

    Definition Classes
    QueryMacros
  5. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  6. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  8. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  9. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  10. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  11. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  12. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  13. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  14. final def notify(): Unit

    Definition Classes
    AnyRef
  15. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  16. macro def rules(edn: String): QueryRules

    Parse a string a collection of Datalog rules.

    Parse a string a collection of Datalog rules.

    Macro-based helper to create Rule alias to be used in Queries.

    val rules = Datomic.Query.rules("""
      [[[doc ?e ?d]
        [?e :db/doc ?d]]]
    """)

    Implemented as a macro. The string is parse at compile time, so any parsing errors will result in complation failure.

    edn

    Datalog rules as a string

    returns

    Datalog rules as a data structure

    Definition Classes
    QueryMacros
  17. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  18. def toString(): String

    Definition Classes
    AnyRef → Any
  19. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  20. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  21. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from QueryMacros

Inherited from AnyRef

Inherited from Any

Ungrouped