Class

sangria.schema

DefaultAstSchemaBuilder

Related Doc: package schema

Permalink

class DefaultAstSchemaBuilder[Ctx] extends AstSchemaBuilder[Ctx]

Linear Supertypes
AstSchemaBuilder[Ctx], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. DefaultAstSchemaBuilder
  2. AstSchemaBuilder
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new DefaultAstSchemaBuilder()

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. def additionalDirectiveDefs: Nil.type

    Permalink
  5. def additionalTypeDefs: Nil.type

    Permalink
  6. def additionalTypeExtensionDefs: Nil.type

    Permalink
  7. def argumentDescription(definition: InputValueDefinition): Option[String]

    Permalink
  8. def argumentFromInput(typeDefinition: TypeSystemDefinition, fieldDefinition: Option[FieldDefinition], definition: InputValueDefinition): FromInput[Map[String, Any]]

    Permalink
  9. def argumentName(definition: InputValueDefinition): String

    Permalink
  10. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  11. def buildArgument(typeDefinition: TypeSystemDefinition, fieldDefinition: Option[FieldDefinition], definition: InputValueDefinition, tpe: InputType[_], defaultValue: Option[Tuple2[_, ToInput[_, _]]], mat: AstSchemaMaterializer[Ctx]): Some[Argument[Any]]

    Permalink
  12. def buildDirective(definition: DirectiveDefinition, arguments: List[Argument[_]], locations: Set[DirectiveLocation.Value], mat: AstSchemaMaterializer[Ctx]): Some[Directive]

    Permalink
  13. def buildEnumType(definition: EnumTypeDefinition, values: List[EnumValue[Any]], mat: AstSchemaMaterializer[Ctx]): Some[EnumType[Any]]

    Permalink
  14. def buildEnumValue(typeDefinition: EnumTypeDefinition, definition: EnumValueDefinition, mat: AstSchemaMaterializer[Ctx]): Some[EnumValue[String]]

    Permalink
  15. def buildField(typeDefinition: TypeDefinition, definition: FieldDefinition, fieldType: OutputType[_], arguments: List[Argument[_]], mat: AstSchemaMaterializer[Ctx]): Some[Field[Ctx, Any]]

    Permalink
  16. def buildInputField(typeDefinition: InputObjectTypeDefinition, definition: InputValueDefinition, tpe: InputType[_], defaultValue: Option[Tuple2[_, ToInput[_, _]]], mat: AstSchemaMaterializer[Ctx]): Some[InputField[Any]]

    Permalink
  17. def buildInputObjectType(definition: InputObjectTypeDefinition, fields: () ⇒ List[InputField[_]], mat: AstSchemaMaterializer[Ctx]): Some[InputObjectType[DefaultInput]]

    Permalink
  18. def buildInterfaceType(definition: InterfaceTypeDefinition, extensions: List[TypeExtensionDefinition], fields: () ⇒ List[Field[Ctx, Any]], mat: AstSchemaMaterializer[Ctx]): Some[InterfaceType[Ctx, Any]]

    Permalink
  19. def buildObjectType(definition: ObjectTypeDefinition, extensions: List[TypeExtensionDefinition], fields: () ⇒ List[Field[Ctx, Any]], interfaces: List[InterfaceType[Ctx, Any]], mat: AstSchemaMaterializer[Ctx]): Some[ObjectType[Ctx, Any]]

    Permalink
  20. def buildScalarType(definition: ScalarTypeDefinition, mat: AstSchemaMaterializer[Ctx]): Some[ScalarType[Any]]

    Permalink
  21. def buildSchema(definition: Option[SchemaDefinition], queryType: ObjectType[Ctx, Any], mutationType: Option[ObjectType[Ctx, Any]], subscriptionType: Option[ObjectType[Ctx, Any]], additionalTypes: List[Type with Named], directives: List[Directive], mat: AstSchemaMaterializer[Ctx]): Schema[Ctx, Any]

    Permalink
  22. def buildUnionType(definition: UnionTypeDefinition, types: List[ObjectType[Ctx, _]], mat: AstSchemaMaterializer[Ctx]): Some[UnionType[Ctx]]

    Permalink
  23. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  24. def commentDescription(node: WithComments): Option[String]

    Permalink
  25. def deprecationReason(dirs: List[ast.Directive]): Option[String]

    Permalink
  26. def directiveDescription(definition: DirectiveDefinition): Option[String]

    Permalink
  27. def directiveName(definition: DirectiveDefinition): String

    Permalink
  28. def directiveShouldInclude(definition: DirectiveDefinition): (DirectiveContext) ⇒ Boolean

    Permalink
  29. def enumValue(definition: EnumValueDefinition): String

    Permalink
  30. def enumValueDeprecationReason(definition: EnumValueDefinition): Option[String]

    Permalink
  31. def enumValueDescription(definition: EnumValueDefinition): Option[String]

    Permalink
  32. def enumValueName(definition: EnumValueDefinition): String

    Permalink
  33. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  34. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  35. def extendField(typeDefinition: ObjectLikeType[Ctx, _], existing: Field[Ctx, Any], fieldType: OutputType[_], mat: AstSchemaMaterializer[Ctx]): Field[Ctx, Any]

    Permalink
  36. def extendInterfaceType(existing: InterfaceType[Ctx, _], extensions: List[TypeExtensionDefinition], fields: () ⇒ List[Field[Ctx, Any]], mat: AstSchemaMaterializer[Ctx]): InterfaceType[Ctx, Any]

    Permalink
  37. def extendObjectType(existing: ObjectType[Ctx, _], extensions: List[TypeExtensionDefinition], fields: () ⇒ List[Field[Ctx, Any]], interfaces: List[InterfaceType[Ctx, Any]], mat: AstSchemaMaterializer[Ctx]): ObjectType[Ctx, Any]

    Permalink
  38. def extendScalarAlias[T, ST](existing: ScalarAlias[T, ST], aliasFor: ScalarType[ST], mat: AstSchemaMaterializer[Ctx]): ScalarAlias[T, ST]

    Permalink
  39. def extendSchema[Val](originalSchema: Schema[Ctx, Val], queryType: ObjectType[Ctx, Val], mutationType: Option[ObjectType[Ctx, Val]], subscriptionType: Option[ObjectType[Ctx, Val]], additionalTypes: List[Type with Named], directives: List[Directive], mat: AstSchemaMaterializer[Ctx]): Schema[Ctx, Val]

    Permalink
  40. def extendUnionType(existing: UnionType[Ctx], types: List[ObjectType[Ctx, _]], mat: AstSchemaMaterializer[Ctx]): UnionType[Ctx]

    Permalink
  41. def extendedObjectTypeInstanceCheck(tpe: ObjectType[Ctx, _], extensions: List[TypeExtensionDefinition]): Option[(Any, Class[_]) ⇒ Boolean]

    Permalink
  42. def fieldComplexity(typeDefinition: TypeDefinition, definition: FieldDefinition): Option[(Ctx, Args, Double) ⇒ Double]

    Permalink
  43. def fieldDeprecationReason(definition: FieldDefinition): Option[String]

    Permalink
  44. def fieldDescription(definition: FieldDefinition): Option[String]

    Permalink
  45. def fieldName(definition: FieldDefinition): String

    Permalink
  46. def fieldTags(typeDefinition: TypeDefinition, definition: FieldDefinition): List[FieldTag]

    Permalink
  47. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  48. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  49. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  50. def inputFieldDescription(definition: InputValueDefinition): Option[String]

    Permalink
  51. def inputFieldName(definition: InputValueDefinition): String

    Permalink
  52. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  53. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  54. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  55. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  56. def objectTypeInstanceCheck(definition: ObjectTypeDefinition, extensions: List[TypeExtensionDefinition]): Option[(Any, Class[_]) ⇒ Boolean]

    Permalink
  57. def resolveField(typeDefinition: TypeDefinition, definition: FieldDefinition): (Context[Ctx, _]) ⇒ Action[Ctx, _]

    Permalink
  58. def scalarCoerceInput(definition: ScalarTypeDefinition): (ast.Value) ⇒ Either[Violation, Any]

    Permalink
  59. def scalarCoerceOutput(definition: ScalarTypeDefinition): (Any, Set[MarshallerCapability]) ⇒ Any

    Permalink
  60. def scalarCoerceUserInput(definition: ScalarTypeDefinition): (Any) ⇒ Either[Violation, Any]

    Permalink
  61. def scalarComplexity(definition: ScalarTypeDefinition): Double

    Permalink
  62. def scalarValueInfo(definition: ScalarTypeDefinition): Set[ScalarValueInfo]

    Permalink
  63. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  64. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  65. def transformDirective(existing: Directive, mat: AstSchemaMaterializer[Ctx]): Directive

    Permalink
  66. def transformEnumType[T](existing: EnumType[T], mat: AstSchemaMaterializer[Ctx]): EnumType[T]

    Permalink
  67. def transformInputObjectType[T](existing: InputObjectType[T], mat: AstSchemaMaterializer[Ctx]): InputObjectType[T]

    Permalink
  68. def transformScalarType[T](existing: ScalarType[T], mat: AstSchemaMaterializer[Ctx]): ScalarType[T]

    Permalink
  69. def typeDescription(definition: TypeDefinition): Option[String]

    Permalink
  70. def typeName(definition: TypeDefinition): String

    Permalink
  71. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  72. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  73. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AstSchemaBuilder[Ctx]

Inherited from AnyRef

Inherited from Any

Ungrouped