abstract class Mapping[F[_]] extends QueryExecutor[F, Json]
Linear Supertypes
Known Subclasses
Ordering
- Alphabetic
- By Inheritance
Inherited
- Mapping
- QueryExecutor
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new Mapping()(implicit M: Monad[F])
Type Members
- case class CursorAttribute[T](fieldName: String, f: (Cursor) => Result[T], required: List[String] = Nil) extends FieldMapping with Product with Serializable
- case class CursorField[T](fieldName: String, f: (Cursor) => Result[T], encoder: Encoder[T], required: List[String]) extends FieldMapping with Product with Serializable
- case class Delegate(fieldName: String, interpreter: Mapping[F], join: (Cursor, Query) => Result[Query] = ComponentElaborator.TrivialJoin) extends FieldMapping with Product with Serializable
- trait FieldMapping extends Product with Serializable
- trait LeafMapping[T] extends TypeMapping
- trait ObjectMapping extends TypeMapping
- case class PrefixedMapping(tpe: Type, mappings: List[(List[String], ObjectMapping)]) extends TypeMapping with Product with Serializable
- trait RootMapping extends FieldMapping
- trait TypeMapping extends Product with Serializable
Abstract Value Members
- abstract val schema: Schema
- abstract val typeMappings: List[TypeMapping]
Concrete Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- implicit val M: Monad[F]
- Definition Classes
- Mapping → QueryExecutor
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- def compileAndRun(text: String, name: Option[String] = None, untypedEnv: Option[Json] = None, useIntrospection: Boolean = true): F[Json]
- Definition Classes
- Mapping → QueryExecutor
- lazy val compiler: QueryCompiler
- def compilerPhases: List[Phase]
- lazy val componentElaborator: ComponentElaborator[[_]F[_]]
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def fieldMapping(path: List[String], tpe: Type, fieldName: String): Option[FieldMapping]
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- val interpreter: QueryInterpreter[F]
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def leafMapping[T](tpe: Type): Option[LeafMapping[T]]
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def objectMapping(path: List[String], tpe: Type): Option[ObjectMapping]
- def rootCursor(path: List[String], rootTpe: Type, fieldName: String, child: Query): F[Result[Cursor]]
- def rootMapping(path: List[String], tpe: Type, fieldName: String): Option[RootMapping]
- def run(query: Query, rootTpe: Type): F[Json]
- Definition Classes
- Mapping → QueryExecutor
- val selectElaborator: SelectElaborator
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- def typeMapping(tpe: Type): Option[TypeMapping]
- def validate: Chain[Json]
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- object CursorField extends Serializable
- object LeafMapping extends Serializable
- object ObjectMapping extends Serializable