abstract class Mapping[F[_]] extends QueryExecutor[F, Json]

Linear Supertypes
QueryExecutor[F, Json], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Mapping
  2. QueryExecutor
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new Mapping()(implicit M: Monad[F])

Type Members

  1. case class CursorAttribute[T](fieldName: String, f: (Cursor) => Result[T], required: List[String] = Nil) extends FieldMapping with Product with Serializable
  2. case class CursorField[T](fieldName: String, f: (Cursor) => Result[T], encoder: Encoder[T], required: List[String]) extends FieldMapping with Product with Serializable
  3. case class Delegate(fieldName: String, interpreter: Mapping[F], join: (Cursor, Query) => Result[Query] = ComponentElaborator.TrivialJoin) extends FieldMapping with Product with Serializable
  4. trait FieldMapping extends Product with Serializable
  5. trait LeafMapping[T] extends TypeMapping
  6. trait ObjectMapping extends TypeMapping
  7. case class PrefixedMapping(tpe: Type, mappings: List[(List[String], ObjectMapping)]) extends TypeMapping with Product with Serializable
  8. trait RootMapping extends FieldMapping
  9. trait TypeMapping extends Product with Serializable

Abstract Value Members

  1. abstract val schema: Schema
  2. abstract val typeMappings: List[TypeMapping]

Concrete 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. implicit val M: Monad[F]
    Definition Classes
    MappingQueryExecutor
  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()
  7. def compileAndRun(text: String, name: Option[String] = None, untypedEnv: Option[Json] = None, useIntrospection: Boolean = true): F[Json]
    Definition Classes
    MappingQueryExecutor
  8. lazy val compiler: QueryCompiler
  9. def compilerPhases: List[Phase]
  10. lazy val componentElaborator: ComponentElaborator[[_]F[_]]
  11. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  12. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  13. def fieldMapping(path: List[String], tpe: Type, fieldName: String): Option[FieldMapping]
  14. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  15. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  16. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  17. val interpreter: QueryInterpreter[F]
  18. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  19. def leafMapping[T](tpe: Type): Option[LeafMapping[T]]
  20. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  21. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  22. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  23. def objectMapping(path: List[String], tpe: Type): Option[ObjectMapping]
  24. def rootCursor(path: List[String], rootTpe: Type, fieldName: String, child: Query): F[Result[Cursor]]
  25. def rootMapping(path: List[String], tpe: Type, fieldName: String): Option[RootMapping]
  26. def run(query: Query, rootTpe: Type): F[Json]
    Definition Classes
    MappingQueryExecutor
  27. val selectElaborator: SelectElaborator
  28. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  29. def toString(): String
    Definition Classes
    AnyRef → Any
  30. def typeMapping(tpe: Type): Option[TypeMapping]
  31. def validate: Chain[Json]
  32. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  33. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  34. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  35. object CursorField extends Serializable
  36. object LeafMapping extends Serializable
  37. object ObjectMapping extends Serializable

Inherited from QueryExecutor[F, Json]

Inherited from AnyRef

Inherited from Any

Ungrouped