Field

final case class Field[F[_], -I, T, A](args: Arg[A], resolve: Resolver[F, (I, A), T], output: Eval[Out[F, T]], description: Option[String])
Source:
ast.scala
trait Product
trait Equals
class Object
trait Matchable
class Any

Type members

Types

type A0 = A
Source:
ast.scala

Value members

Concrete methods

def contramap[B](g: B => I): Field[F, B, T, A]
Source:
ast.scala
def document(description: String): Field[F, I, T, A]
Source:
ast.scala
def mapK[G[_] : Functor](fk: FunctionK[F, G]): Field[G, I, T, A]
Source:
ast.scala

Inherited methods

Inherited from:
Product