class Resolver[Ctx] extends AnyRef

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

Instance Constructors

  1. new Resolver(marshaller: ResultMarshaller, middlewareCtx: MiddlewareQueryContext[Ctx, _, _], schema: Schema[Ctx, _], valueCollector: ValueCollector[Ctx, _], variables: Map[String, VariableValue], fieldCollector: FieldCollector[Ctx, _], userContext: Ctx, exceptionHandler: ExceptionHandler, deferredResolver: DeferredResolver[Ctx], sourceMapper: Option[SourceMapper], deprecationTracker: DeprecationTracker, middleware: List[(Any, Middleware[Ctx])], maxQueryDepth: Option[Int], deferredResolverState: Any, preserveOriginalErrors: Boolean, validationTiming: TimeMeasurement, queryReducerTiming: TimeMeasurement, queryAst: Document)(implicit executionContext: ExecutionContext)

Type Members

  1. case class ChildDeferredContext(promise: Promise[Vector[Future[Vector[Defer]]]]) extends Product with Serializable
  2. case class Defer(promise: Promise[(ChildDeferredContext, Any, Vector[Throwable])], deferred: Deferred[Any], complexity: Double, field: Field[_, _], astFields: Vector[Field], args: Args) extends DeferredWithInfo with Product with Serializable
  3. case class DeferredResult(deferred: Vector[Future[Vector[Defer]]], futureValue: Future[Result]) extends Resolve with Product with Serializable
  4. case class ErrorFieldResolution(errors: ErrorRegistry) extends FieldResolution with Product with Serializable
  5. sealed trait FieldResolution extends AnyRef
  6. case class ParentDeferredContext(uc: Ctx, expectedBranches: Int) extends Product with Serializable
  7. sealed trait Resolve extends AnyRef
  8. case class Result(errors: ErrorRegistry, value: Option[Any], userContext: Option[Ctx] = None) extends Resolve with Product with Serializable
  9. case class SeqFutRes(value: Any = null, errors: Vector[Throwable] = Vector.empty, dctx: ChildDeferredContext = null) extends Product with Serializable
  10. case class SeqRes(value: Future[SeqFutRes], defer: Defer, deferFut: Future[Vector[Defer]]) extends Product with Serializable
  11. case class StandardFieldResolution(errors: ErrorRegistry, action: LeafAction[Ctx, Any], ctxUpdate: Option[MappedCtxUpdate[Ctx, Any, Any]]) extends FieldResolution with Product with Serializable
  12. case class StreamFieldResolution[Val, S[_]](errors: ErrorRegistry, value: SubscriptionValue[Ctx, Val, S], standardResolution: (Any) ⇒ StandardFieldResolution) extends FieldResolution with Product with Serializable

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( ... ) @native()
  6. def collectActionsPar(path: ExecutionPath, tpe: ObjectType[Ctx, _], value: Any, fields: CollectedFields, errorReg: ErrorRegistry, userCtx: Ctx): Actions
  7. def collectProjections(path: ExecutionPath, field: Field[Ctx, _], astFields: Vector[Field], maxLevel: Int): Vector[ProjectedName]
  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  10. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  11. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  12. def handleScheme(result: Future[((Vector[RegisteredError], Node), Ctx)], scheme: ExecutionScheme): ExecutionScheme.Result[Ctx, Node]
  13. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  14. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  15. def isOptional(tpe: OutputType[_]): Boolean
  16. def isOptional(tpe: ObjectType[_, _], fieldName: String): Boolean
  17. def isUndefinedValue(value: Any): Boolean
  18. val marshaller: ResultMarshaller
  19. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  20. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  21. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  22. def nullForNotNullTypeError(position: Option[AstLocation]): ExecutionError
  23. def processFinalResolve(resolve: Resolve): Future[(Vector[RegisteredError], Node)]
  24. def resolveActionsPar(path: ExecutionPath, tpe: ObjectType[Ctx, _], actions: Actions, userCtx: Ctx, fieldsNamesOrdered: Vector[String]): Resolve
  25. def resolveField(userCtx: Ctx, tpe: ObjectType[Ctx, _], path: ExecutionPath, value: Any, errors: ErrorRegistry, name: String, astFields: Vector[Field]): FieldResolution
  26. def resolveFieldsPar(tpe: ObjectType[Ctx, _], value: Any, fields: CollectedFields)(scheme: ExecutionScheme): ExecutionScheme.Result[Ctx, Node]
  27. def resolveFieldsSeq(tpe: ObjectType[Ctx, _], value: Any, fields: CollectedFields)(scheme: ExecutionScheme): ExecutionScheme.Result[Ctx, Node]
  28. def resolveFieldsSubs(tpe: ObjectType[Ctx, _], value: Any, fields: CollectedFields)(scheme: ExecutionScheme): ExecutionScheme.Result[Ctx, Node]
  29. def resolveSeq(path: ExecutionPath, tpe: ObjectType[Ctx, _], value: Any, fields: CollectedFields, errorReg: ErrorRegistry): Future[(Result, Ctx)]
  30. def resolveSimpleListValue(simpleRes: Seq[Result], path: ExecutionPath, optional: Boolean, astPosition: Option[AstLocation]): Result
  31. def resolveSubs[S[_]](path: ExecutionPath, tpe: ObjectType[Ctx, _], value: Any, fields: CollectedFields, errorReg: ErrorRegistry, requestedStream: Option[SubscriptionStream[S]]): (SubscriptionStream[S], S[(Vector[RegisteredError], Node)])
  32. def resolveValue(path: ExecutionPath, astFields: Vector[Field], tpe: OutputType[_], field: Field[Ctx, _], value: Any, userCtx: Ctx, actualType: Option[InputType[_]] = None): Resolve
  33. val resultResolver: ResultResolver
  34. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  35. val toScalarMiddleware: Option[(Any, InputType[_]) ⇒ Option[Any]]
  36. def toString(): String
    Definition Classes
    AnyRef → Any
  37. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  38. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  39. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  40. object SeqRes extends Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped