ast

object ast extends Implicits
Source:
ast.scala
trait Implicits
class Object
trait Matchable
class Any
ast.type

Type members

Classlikes

final case class Enum[F[_], A](name: String, mappings: NonEmptyList[(String, EnumValue[A])], description: Option[String]) extends OutToplevel[F, A] with InLeaf[A] with InToplevel[A]
Source:
ast.scala
final case class EnumValue[A](value: A, description: Option[String])
Source:
ast.scala
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
final case class ID[A](value: A) extends AnyVal
Companion:
object
Source:
ast.scala
object ID
Companion:
class
Source:
ast.scala
final case class Implementation[F[_], A, B](implementation: Eval[Interface[F, B]])(implicit specify: B => Option[A])
Source:
ast.scala
sealed trait In[A]
Source:
ast.scala
final case class InArr[A, C](of: In[A], fromSeq: Seq[A] => Either[String, C]) extends In[C]
Source:
ast.scala
sealed trait InLeaf[A] extends In[A]
Source:
ast.scala
final case class InOpt[A](of: In[A]) extends In[Option[A]]
Source:
ast.scala
sealed trait InToplevel[A] extends In[A] with Toplevel[A]
Source:
ast.scala
final case class Input[A](name: String, fields: NonEmptyArg[A], description: Option[String]) extends InToplevel[A]
Source:
ast.scala
final case class Interface[F[_], A](name: String, fields: NonEmptyList[(String, Field[F, A, _, _])], implementations: List[Implementation[F, A, _]], description: Option[String]) extends ObjectLike[F, A]
Source:
ast.scala
sealed trait ObjectLike[F[_], A] extends Selectable[F, A]
Source:
ast.scala
sealed trait Out[F[_], A]
Source:
ast.scala
final case class OutArr[F[_], A, C](of: Out[F, A], toSeq: C => Seq[A]) extends Out[F, C]
Source:
ast.scala
final case class OutOpt[F[_], A](of: Out[F, A]) extends Out[F, Option[A]]
Source:
ast.scala
sealed trait OutToplevel[F[_], A] extends Out[F, A] with Toplevel[A]
Source:
ast.scala
final case class Scalar[F[_], A](name: String, encoder: A => Value, decoder: Value => Either[String, A], description: Option[String]) extends OutToplevel[F, A] with InLeaf[A] with InToplevel[A]
Companion:
object
Source:
ast.scala
object Scalar
Companion:
class
Source:
ast.scala
sealed trait Selectable[F[_], A] extends OutToplevel[F, A]
Source:
ast.scala
sealed trait Toplevel[+A]
Source:
ast.scala
final case class Type[F[_], A](name: String, fields: NonEmptyList[(String, Field[F, A, _, _])], implementations: List[Implementation[F, A, _]], description: Option[String]) extends ObjectLike[F, A]
Source:
ast.scala
final case class Union[F[_], A](name: String, types: NonEmptyList[Variant[F, A, _]], description: Option[String]) extends Selectable[F, A]
Source:
ast.scala
final case class Variant[F[_], A, B](tpe: Eval[Type[F, B]])(implicit specify: A => Option[B])
Source:
ast.scala

Implicits

Inherited implicits

implicit def bigDecimalScalar[F[_]]: Scalar[F, BigDecimal]
Inherited from:
Implicits
Source:
ast.scala
implicit def bigIntScalar[F[_]]: Scalar[F, BigInt]
Inherited from:
Implicits
Source:
ast.scala
implicit def booleanScalar[F[_]]: Scalar[F, Boolean]
Inherited from:
Implicits
Source:
ast.scala
implicit def doubleScalar[F[_]]: Scalar[F, Double]
Inherited from:
Implicits
Source:
ast.scala
implicit def floatScalar[F[_]]: Scalar[F, Float]
Inherited from:
Implicits
Source:
ast.scala
implicit def gqlInForChain[A](implicit tpe: In[A]): In[Chain[A]]
Inherited from:
LowPriorityImplicits
Source:
ast.scala
implicit def gqlInForList[A](implicit tpe: In[A]): In[List[A]]
Inherited from:
LowPriorityImplicits
Source:
ast.scala
implicit def gqlInForNonEmptyChain[A](implicit tpe: In[A]): In[Type[A]]
Inherited from:
LowPriorityImplicits
Source:
ast.scala
implicit def gqlInForNonEmptyList[A](implicit tpe: In[A]): In[NonEmptyList[A]]
Inherited from:
LowPriorityImplicits
Source:
ast.scala
implicit def gqlInForNonEmptyVector[A](implicit tpe: In[A]): In[NonEmptyVector[A]]
Inherited from:
LowPriorityImplicits
Source:
ast.scala
implicit def gqlInForOption[A](implicit tpe: In[A]): In[Option[A]]
Inherited from:
Implicits
Source:
ast.scala
implicit def gqlInForSeq[A](implicit tpe: In[A]): In[Seq[A]]
Inherited from:
LowPriorityImplicits
Source:
ast.scala
implicit def gqlInForSet[A](implicit tpe: In[A]): In[Set[A]]
Inherited from:
LowPriorityImplicits
Source:
ast.scala
implicit def gqlInForVector[A](implicit tpe: In[A]): In[Vector[A]]
Inherited from:
LowPriorityImplicits
Source:
ast.scala
implicit def gqlOutArrForChain[F[_], A](implicit tpe: Out[F, A]): Out[F, Chain[A]]
Inherited from:
LowPriorityImplicits
Source:
ast.scala
implicit def gqlOutArrForNec[F[_], A](implicit tpe: Out[F, A]): Out[F, Type[A]]
Inherited from:
LowPriorityImplicits
Source:
ast.scala
implicit def gqlOutArrForNel[F[_], A](implicit tpe: Out[F, A]): Out[F, NonEmptyList[A]]
Inherited from:
LowPriorityImplicits
Source:
ast.scala
implicit def gqlOutArrForNev[F[_], A](implicit tpe: Out[F, A]): Out[F, NonEmptyVector[A]]
Inherited from:
LowPriorityImplicits
Source:
ast.scala
implicit def gqlOutArrForSeqLike[F[_], A, G <: (Seq)](implicit tpe: Out[F, A]): Out[F, G[A]]
Inherited from:
LowPriorityImplicits
Source:
ast.scala
implicit def gqlOutForOption[F[_], A](implicit tpe: Out[F, A]): Out[F, Option[A]]
Inherited from:
Implicits
Source:
ast.scala
implicit def intScalar[F[_]]: Scalar[F, Int]
Inherited from:
Implicits
Source:
ast.scala
implicit def longScalar[F[_]]: Scalar[F, Long]
Inherited from:
Implicits
Source:
ast.scala
implicit def stringScalar[F[_]]: Scalar[F, String]
Inherited from:
Implicits
Source:
ast.scala
implicit def uuidScalar[F[_]]: Scalar[F, UUID]
Inherited from:
Implicits
Source:
ast.scala