Package

sangria

schema

Permalink

package schema

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

Type Members

  1. sealed trait AbstractType extends Type with Named

    Permalink
  2. sealed trait Action[+Ctx, +Val] extends AnyRef

    Permalink
  3. final case class Args(raw: Map[String, Any]) extends AnyVal with Product with Serializable

    Permalink
  4. case class Argument[T] extends InputValue[T] with Named with Product with Serializable

    Permalink
  5. trait ArgumentType[T] extends AnyRef

    Permalink
  6. trait ArgumentTypeLowPrio extends ArgumentTypeLowestPrio

    Permalink
  7. trait ArgumentTypeLowestPrio extends AnyRef

    Permalink
  8. sealed trait CompositeType[T] extends Type with Named with OutputType[T]

    Permalink
  9. case class Context[Ctx, Val](value: Val, ctx: Ctx, args: Args, schema: Schema[Ctx, Val], field: Field[Ctx, Val], parentType: ObjectType[Ctx, Any], marshaller: ResultMarshaller, sourceMapper: Option[SourceMapper], deprecationTracker: DeprecationTracker, astFields: Vector[ast.Field], path: Vector[String]) extends WithArguments with WithInputTypeRendering[Ctx] with Product with Serializable

    Permalink
  10. class DefaultMaterializationLogic[Ctx] extends MaterializationLogic[Ctx]

    Permalink
  11. class DefaultValuesValidationRule extends SchemaValidationRule

    Permalink
  12. trait Deferred[+T] extends AnyRef

    Permalink
  13. case class DeferredFutureValue[Ctx, Val](value: Future[Deferred[Val]]) extends LeafAction[Ctx, Val] with Product with Serializable

    Permalink
  14. trait DeferredResolver[-Ctx] extends AnyRef

    Permalink
  15. case class DeferredValue[Ctx, Val](value: Deferred[Val]) extends LeafAction[Ctx, Val] with Product with Serializable

    Permalink
  16. case class Directive(name: String, description: Option[String] = None, arguments: List[Argument[_]] = Nil, locations: Set[DirectiveLocation.Value] = Set.empty, shouldInclude: (DirectiveContext) ⇒ Boolean) extends HasArguments with Product with Serializable

    Permalink
  17. case class DirectiveContext(selection: WithDirectives, directive: Directive, args: Args) extends WithArguments with Product with Serializable

    Permalink
  18. case class EnumType[T](name: String, description: Option[String] = None, values: List[EnumValue[T]]) extends InputType[@@[T, CoercedScalaResult]] with OutputType[T] with LeafType with NullableType with UnmodifiedType with Named with Product with Serializable

    Permalink
  19. case class EnumValue[+T](name: String, description: Option[String] = None, value: T, deprecationReason: Option[String] = None) extends Named with Product with Serializable

    Permalink
  20. case class Field[Ctx, Val] extends Named with HasArguments with Product with Serializable

    Permalink
  21. case class FutureValue[Ctx, Val](value: Future[Val]) extends LeafAction[Ctx, Val] with ReduceAction[Ctx, Val] with Product with Serializable

    Permalink
  22. sealed trait HasArguments extends AnyRef

    Permalink
  23. case class InputField[T] extends InputValue[T] with Named with Product with Serializable

    Permalink
  24. trait InputObjectDefaultResult[T] extends AnyRef

    Permalink
  25. trait InputObjectDefaultResultLowPrio extends AnyRef

    Permalink
  26. case class InputObjectType[T] extends InputType[@@[T, InputObjectResult]] with NullableType with UnmodifiedType with Named with Product with Serializable

    Permalink
  27. sealed trait InputType[+T] extends Type

    Permalink
  28. trait InputValue[T] extends AnyRef

    Permalink
  29. class InterfaceImplementationValidationRule extends SchemaValidationRule

    Permalink
  30. case class InterfaceType[Ctx, Val] extends ObjectLikeType[Ctx, Val] with AbstractType with Product with Serializable

    Permalink
  31. class IntrospectionSchemaMaterializer[Ctx, T] extends AnyRef

    Permalink
  32. sealed trait LeafAction[+Ctx, +Val] extends Action[Ctx, Val]

    Permalink
  33. sealed trait LeafType extends Type with Named

    Permalink
  34. case class ListInputType[T](ofType: InputType[T]) extends InputType[Seq[T]] with NullableType with Product with Serializable

    Permalink
  35. case class ListType[T](ofType: OutputType[T]) extends OutputType[Seq[T]] with NullableType with Product with Serializable

    Permalink
  36. trait LowPrioValidOutType extends AnyRef

    Permalink
  37. class MappedUpdateCtx[Ctx, Val, NewVal] extends Action[Ctx, NewVal]

    Permalink
  38. case class MappingDeferred[A, +B](deferred: Deferred[A], mapFn: (A) ⇒ B) extends Deferred[B] with Product with Serializable

    Permalink
  39. trait MaterializationLogic[Ctx] extends AnyRef

    Permalink
  40. sealed trait Named extends AnyRef

    Permalink
  41. sealed trait NullableType extends AnyRef

    Permalink
  42. sealed trait ObjectLikeType[Ctx, Val] extends OutputType[Val] with CompositeType[Val] with NullableType with UnmodifiedType with Named

    Permalink
  43. case class ObjectType[Ctx, Val] extends ObjectLikeType[Ctx, Val] with Product with Serializable

    Permalink
  44. case class OptionInputType[T](ofType: InputType[T]) extends InputType[Option[T]] with Product with Serializable

    Permalink
  45. case class OptionType[T](ofType: OutputType[T]) extends OutputType[Option[T]] with Product with Serializable

    Permalink
  46. sealed trait OutputType[+T] extends Type

    Permalink
  47. case class PossibleInterface[Ctx, Concrete](interfaceType: InterfaceType[Ctx, _]) extends Product with Serializable

    Permalink
  48. trait PossibleInterfaceLowPrioImplicits extends AnyRef

    Permalink
  49. case class PossibleObject[Ctx, Abstract](objectType: ObjectType[Ctx, _]) extends Product with Serializable

    Permalink
  50. trait PossibleType[AbstractType, ConcreteType] extends AnyRef

    Permalink
  51. case class ProjectedName(name: String, children: Vector[ProjectedName] = Vector.empty) extends Product with Serializable

    Permalink
  52. case class ProjectionName(name: String) extends FieldTag with Product with Serializable

    Permalink
  53. trait Projector[Ctx, Val, Res] extends (Context[Ctx, Val]) ⇒ Action[Ctx, Res]

    Permalink
  54. sealed trait ReduceAction[+Ctx, +Val] extends Action[Ctx, Val]

    Permalink
  55. case class ScalarType[T](name: String, description: Option[String] = None, coerceUserInput: (Any) ⇒ Either[Violation, T], coerceOutput: (T) ⇒ ast.Value, coerceInput: (ast.Value) ⇒ Either[Violation, T], complexity: Double = 0.0D) extends InputType[@@[T, CoercedScalaResult]] with OutputType[T] with LeafType with NullableType with UnmodifiedType with Named with Product with Serializable

    Permalink
  56. case class Schema[Ctx, Val](query: ObjectType[Ctx, Val], mutation: Option[ObjectType[Ctx, Val]] = None, subscription: Option[ObjectType[Ctx, Val]] = None, additionalTypes: List[Type with Named] = Nil, directives: List[Directive] = BuiltinDirectives, validationRules: List[SchemaValidationRule] = SchemaValidationRule.default) extends Product with Serializable

    Permalink
  57. case class SchemaMaterializationException(message: String, cause: Throwable = null) extends Exception with Product with Serializable

    Permalink
  58. case class SchemaValidationException(violations: List[Violation]) extends IllegalArgumentException with Product with Serializable

    Permalink
  59. trait SchemaValidationRule extends AnyRef

    Permalink
  60. case class TryValue[Ctx, Val](value: Try[Val]) extends LeafAction[Ctx, Val] with ReduceAction[Ctx, Val] with Product with Serializable

    Permalink
  61. sealed trait Type extends AnyRef

    Permalink
  62. case class UnionType[Ctx](name: String, description: Option[String] = None, types: List[ObjectType[Ctx, _]]) extends OutputType[Any] with CompositeType[Any] with AbstractType with NullableType with UnmodifiedType with Product with Serializable

    Permalink
  63. sealed trait UnmodifiedType extends AnyRef

    Permalink
  64. class UpdateCtx[Ctx, Val] extends Action[Ctx, Val]

    Permalink
  65. trait ValidOutType[-Res, +Out] extends AnyRef

    Permalink
    Annotations
    @implicitNotFound( ... )
  66. case class Value[Ctx, Val](value: Val) extends LeafAction[Ctx, Val] with ReduceAction[Ctx, Val] with Product with Serializable

    Permalink
  67. trait WithArguments extends AnyRef

    Permalink
  68. trait WithInputTypeRendering[Ctx] extends AnyRef

    Permalink
  69. trait WithoutInputTypeTags[T] extends AnyRef

    Permalink
  70. trait WithoutInputTypeTagsLowPrio extends AnyRef

    Permalink

Value Members

  1. object Action

    Permalink
  2. object Args extends Serializable

    Permalink
  3. object Argument extends Serializable

    Permalink
  4. object ArgumentType extends ArgumentTypeLowPrio

    Permalink
  5. implicit val BigDecimalType: ScalarType[BigDecimal]

    Permalink
  6. implicit val BigIntType: ScalarType[BigInt]

    Permalink
  7. implicit val BooleanType: ScalarType[Boolean]

    Permalink
  8. val BuiltinDirectives: List[Directive]

    Permalink
  9. val BuiltinScalars: List[ScalarType[_]]

    Permalink
  10. val BuiltinScalarsByName: Map[String, ScalarType[_]]

    Permalink
  11. object DefaultMaterializationLogic

    Permalink
  12. object DefaultValueRenderer

    Permalink
  13. object DeferredResolver

    Permalink
  14. object DirectiveLocation extends Enumeration

    Permalink
  15. object Field extends Serializable

    Permalink
  16. implicit val FloatType: ScalarType[Double]

    Permalink
  17. val IDType: ScalarType[String]

    Permalink
  18. val IfArg: Argument[Boolean]

    Permalink
  19. val IncludeDirective: Directive

    Permalink
  20. object InputField extends Serializable

    Permalink
  21. object InputObjectDefaultResult extends InputObjectDefaultResultLowPrio

    Permalink
  22. object InputObjectType extends Serializable

    Permalink
  23. implicit val IntType: ScalarType[Int]

    Permalink
  24. object InterfaceType extends Serializable

    Permalink
  25. object IntrospectionSchemaMaterializer

    Permalink
  26. implicit val LongType: ScalarType[Long]

    Permalink
  27. object MaterializationLogic

    Permalink
  28. object Named

    Permalink
  29. object ObjectType extends Serializable

    Permalink
  30. object PossibleInterface extends PossibleInterfaceLowPrioImplicits with Serializable

    Permalink
  31. object PossibleObject extends Serializable

    Permalink
  32. object PossibleType

    Permalink
  33. object ProjectionExclude extends FieldTag with Product with Serializable

    Permalink
  34. object Projector

    Permalink
  35. object ReduceAction

    Permalink
  36. object Schema extends Serializable

    Permalink
  37. object SchemaValidationRule

    Permalink
  38. val SkipDirective: Directive

    Permalink
  39. implicit val StringType: ScalarType[String]

    Permalink
  40. object UnsupportedDeferError extends Exception with Product with Serializable

    Permalink
  41. object UpdateCtx

    Permalink
  42. object ValidOutType extends LowPrioValidOutType

    Permalink
  43. object WithoutInputTypeTags extends WithoutInputTypeTagsLowPrio

    Permalink
  44. def fields[Ctx, Val](fields: Field[Ctx, Val]*): List[Field[Ctx, Val]]

    Permalink
  45. def interfaces[Ctx, Concrete](interfaces: PossibleInterface[Ctx, Concrete]*): List[PossibleInterface[Ctx, Concrete]]

    Permalink
  46. def possibleTypes[Ctx, Abstract](objectTypes: PossibleObject[Ctx, Abstract]*): List[PossibleObject[Ctx, Abstract]]

    Permalink

Inherited from AnyRef

Inherited from Any

Ungrouped