Packages

object Wrapper

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Wrapper
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. case class CombinedWrapper[-R](wrappers: List[Wrapper[R]]) extends Wrapper[R] with Product with Serializable

    Wrapper that combines multiple wrappers.

    Wrapper that combines multiple wrappers.

    wrappers

    a list of wrappers

  2. trait EffectWrappingFunction[-R] extends AnyRef
  3. case class EffectfulWrapper[-R](wrapper: UIO[Wrapper[R]]) extends Wrapper[R] with Product with Serializable

    A wrapper that requires an effect to be built.

    A wrapper that requires an effect to be built. The effect will be run for each query.

    wrapper

    an effect that builds a wrapper

  4. trait ExecutionWrapper[-R] extends SimpleWrapper[R, Nothing, GraphQLResponse[CalibanError], ExecutionRequest]

    Wrapper for the query execution stage.

    Wrapper for the query execution stage. Wraps a function from an ExecutionRequest to a URIO[R, GraphQLResponse[CalibanError]].

  5. abstract class FieldWrapper[-R] extends Wrapper[R]

    Wrapper for each individual field.

    Wrapper for each individual field. Takes a function from a ZQuery[R, Nothing, ResponseValue] and a FieldInfo and that returns a ZQuery[R, CalibanError, ResponseValue]. If wrapPureValues is true, every single field will be wrapped, which could have an impact on performances. If false, simple pure values will be ignored.

  6. trait IntrospectionWrapper[-R] extends Wrapper[R]

    Wrapper for the introspection query processing.

    Wrapper for the introspection query processing. Takes a function from a ZIO[R, ExecutionError, Introspection] and that returns a ZIO[R, ExecutionError, Introspection].

  7. trait OverallWrapper[-R] extends SimpleWrapper[R, Nothing, GraphQLResponse[CalibanError], GraphQLRequest]

    Wrapper for the whole query processing.

    Wrapper for the whole query processing. Wraps a function from a request GraphQLRequest to a URIO[R, GraphQLResponse[CalibanError]].

  8. trait ParsingWrapper[-R] extends SimpleWrapper[R, ParsingError, Document, String]

    Wrapper for the query parsing stage.

    Wrapper for the query parsing stage. Wraps a function from a query String to a ZIO[R, ParsingError, Document].

  9. sealed trait SimpleWrapper[-R, E, A, Info] extends Wrapper[R]
  10. trait ValidationWrapper[-R] extends SimpleWrapper[R, ValidationError, ExecutionRequest, Document]

    Wrapper for the query validation stage.

    Wrapper for the query validation stage. Wraps a function from a Document to a ZIO[R, ValidationError, ExecutionRequest].

  11. trait WrappingFunction[-R, E, A, Info] extends AnyRef

    WrappingFunction[R, E, A, Info] is an alias for a function that transforms an initial function from Info to ZIO[R, E, A] into a new function from Info to ZIO[R, E, A].

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. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  9. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  10. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  11. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  12. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  14. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  15. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  16. def toString(): String
    Definition Classes
    AnyRef → Any
  17. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  18. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  19. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from AnyRef

Inherited from Any

Ungrouped