Packages

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, description: Option[String] = None, directives: List[Directive] = BuiltinDirectives, validationRules: List[SchemaValidationRule] = SchemaValidationRule.default, astDirectives: Vector[ast.Directive] = Vector.empty, astNodes: Vector[AstNode] = Vector.empty) extends HasAstInfo with HasDescription with Product with Serializable

Linear Supertypes
Serializable, Product, Equals, HasDescription, HasAstInfo, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Schema
  2. Serializable
  3. Product
  4. Equals
  5. HasDescription
  6. HasAstInfo
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new Schema(query: ObjectType[Ctx, Val], mutation: Option[ObjectType[Ctx, Val]] = None, subscription: Option[ObjectType[Ctx, Val]] = None, additionalTypes: List[Type with Named] = Nil, description: Option[String] = None, directives: List[Directive] = BuiltinDirectives, validationRules: List[SchemaValidationRule] = SchemaValidationRule.default, astDirectives: Vector[ast.Directive] = Vector.empty, astNodes: Vector[AstNode] = Vector.empty)

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. val additionalTypes: List[Type with Named]
  5. lazy val allTypes: Map[String, Type with Named]
  6. def analyzer(query: Document): SchemaBasedDocumentAnalyzer
  7. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  8. val astDirectives: Vector[ast.Directive]
    Definition Classes
    SchemaHasAstInfo
  9. val astNodes: Vector[AstNode]
    Definition Classes
    SchemaHasAstInfo
  10. lazy val availableTypeNames: Vector[String]
  11. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  12. def compare(oldSchema: Schema[_, _]): Vector[SchemaChange]
  13. val description: Option[String]
    Definition Classes
    SchemaHasDescription
  14. lazy val directImplementations: Map[String, Vector[ObjectLikeType[_, _]]]
  15. val directives: List[Directive]
  16. lazy val directivesByName: Map[String, Directive]
  17. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  18. def extend(document: Document, builder: AstSchemaBuilder[Ctx] = AstSchemaBuilder.default[Ctx]): Schema[Ctx, Val]
  19. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  20. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  21. def getInputType(tpe: IntrospectionTypeRef): Option[InputType[_]]
  22. def getInputType(tpe: ast.Type): Option[InputType[_]]
  23. def getOutputType(tpe: ast.Type, topLevel: Boolean = false): Option[OutputType[_]]
  24. lazy val implementations: Map[String, Vector[ObjectType[_, _]]]
  25. lazy val inputTypes: Map[String, Type with Named with InputType[Any]]
  26. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  27. def isPossibleType(baseTypeName: String, tpe: ObjectType[_, _]): Boolean
  28. val mutation: Option[ObjectType[Ctx, Val]]
  29. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  30. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  31. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  32. lazy val outputTypes: Map[String, Type with Named with OutputType[Any]]
  33. lazy val possibleTypes: Map[String, Vector[ObjectType[_, _]]]
  34. def productElementNames: Iterator[String]
    Definition Classes
    Product
  35. val query: ObjectType[Ctx, Val]
  36. def renderCompact(filter: SchemaFilter): String
  37. def renderCompact: String
  38. def renderPretty(filter: SchemaFilter): String
  39. def renderPretty: String
  40. lazy val scalarTypes: Map[String, ScalarType[_]]
  41. val subscription: Option[ObjectType[Ctx, Val]]
  42. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  43. def toAst(filter: SchemaFilter): Document
  44. lazy val toAst: Document
  45. lazy val typeList: Vector[Type with Named]
  46. lazy val types: Map[String, (Int, Type with Named)]
  47. lazy val unionTypes: Map[String, UnionType[_]]
  48. val validationRules: List[SchemaValidationRule]
  49. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  50. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  51. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from HasDescription

Inherited from HasAstInfo

Inherited from AnyRef

Inherited from Any

Ungrouped