Packages

object SchemaChange

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

Type Members

  1. abstract class AbstractAstDirectiveAdded extends AstDirectiveAdded
  2. abstract class AbstractAstDirectiveRemoved extends AstDirectiveRemoved
  3. sealed abstract class AbstractChange extends SchemaChange
  4. trait AstDirectiveAdded extends SchemaChange
  5. trait AstDirectiveRemoved extends SchemaChange
  6. sealed trait DeprecationChange extends TypeChange
  7. sealed trait DescriptionChange extends AnyRef
  8. case class DirectiveAdded(directive: Directive) extends AbstractChange with Product with Serializable
  9. case class DirectiveArgumentAdded(directive: Directive, argument: Argument[_], breaking: Boolean) extends AbstractChange with Product with Serializable
  10. case class DirectiveArgumentAstDirectiveAdded(dir: Directive, argument: Argument[_], directive: ast.Directive) extends AbstractAstDirectiveAdded with Product with Serializable
  11. case class DirectiveArgumentAstDirectiveRemoved(dir: Directive, argument: Argument[_], directive: ast.Directive) extends AbstractAstDirectiveRemoved with Product with Serializable
  12. case class DirectiveArgumentDefaultChanged(directive: Directive, argument: Argument[_], oldDefault: Option[ast.Value], newDefault: Option[ast.Value]) extends AbstractChange with Product with Serializable
  13. case class DirectiveArgumentDescriptionChanged(directive: Directive, argument: Argument[_], oldDescription: Option[String], newDescription: Option[String]) extends AbstractChange with DescriptionChange with Product with Serializable
  14. case class DirectiveArgumentRemoved(directive: Directive, argument: Argument[_]) extends AbstractChange with Product with Serializable
  15. case class DirectiveArgumentTypeChanged(directive: Directive, argument: Argument[_], breaking: Boolean, oldFieldType: InputType[_], newFieldType: InputType[_]) extends AbstractChange with Product with Serializable
  16. case class DirectiveDescriptionChanged(directive: Directive, oldDescription: Option[String], newDescription: Option[String]) extends AbstractChange with Product with Serializable
  17. case class DirectiveLocationAdded(directive: Directive, location: DirectiveLocation.Value) extends AbstractChange with Product with Serializable
  18. case class DirectiveLocationRemoved(directive: Directive, location: DirectiveLocation.Value) extends AbstractChange with Product with Serializable
  19. case class DirectiveRemoved(directive: Directive) extends AbstractChange with Product with Serializable
  20. case class EnumTypeAstDirectiveAdded(tpe: EnumType[_], directive: ast.Directive) extends AbstractAstDirectiveAdded with Product with Serializable
  21. case class EnumTypeAstDirectiveRemoved(tpe: EnumType[_], directive: ast.Directive) extends AbstractAstDirectiveRemoved with Product with Serializable
  22. case class EnumValueAdded(tpe: EnumType[_], value: EnumValue[_]) extends AbstractChange with TypeChange with Product with Serializable
  23. case class EnumValueAstDirectiveAdded(tpe: EnumType[_], value: EnumValue[_], directive: ast.Directive) extends AbstractAstDirectiveAdded with Product with Serializable
  24. case class EnumValueAstDirectiveRemoved(tpe: EnumType[_], value: EnumValue[_], directive: ast.Directive) extends AbstractAstDirectiveRemoved with Product with Serializable
  25. case class EnumValueDeprecated(tpe: EnumType[_], value: EnumValue[_], oldDeprecationReason: Option[String], newDeprecationReason: Option[String]) extends AbstractChange with DeprecationChange with Product with Serializable
  26. case class EnumValueDescriptionChanged(tpe: EnumType[_], value: EnumValue[_], oldDescription: Option[String], newDescription: Option[String]) extends AbstractChange with DescriptionChange with TypeChange with Product with Serializable
  27. case class EnumValueRemoved(tpe: EnumType[_], value: EnumValue[_]) extends AbstractChange with TypeChange with Product with Serializable
  28. case class FieldAdded(tpe: ObjectLikeType[_, _], field: Field[_, _]) extends AbstractChange with TypeChange with Product with Serializable
  29. case class FieldArgumentAstDirectiveAdded(tpe: ObjectLikeType[_, _], field: Field[_, _], argument: Argument[_], directive: ast.Directive) extends AbstractAstDirectiveAdded with Product with Serializable
  30. case class FieldArgumentAstDirectiveRemoved(tpe: ObjectLikeType[_, _], field: Field[_, _], argument: Argument[_], directive: ast.Directive) extends AbstractAstDirectiveRemoved with Product with Serializable
  31. case class FieldAstDirectiveAdded(tpe: ObjectLikeType[_, _], field: Field[_, _], directive: ast.Directive) extends AbstractAstDirectiveAdded with Product with Serializable
  32. case class FieldAstDirectiveRemoved(tpe: ObjectLikeType[_, _], field: Field[_, _], directive: ast.Directive) extends AbstractAstDirectiveRemoved with Product with Serializable
  33. case class FieldDeprecationChanged(tpe: ObjectLikeType[_, _], field: Field[_, _], oldDeprecationReason: Option[String], newDeprecationReason: Option[String]) extends AbstractChange with DeprecationChange with Product with Serializable
  34. case class FieldDescriptionChanged(tpe: ObjectLikeType[_, _], field: Field[_, _], oldDescription: Option[String], newDescription: Option[String]) extends AbstractChange with DescriptionChange with TypeChange with Product with Serializable
  35. case class FieldRemoved(tpe: ObjectLikeType[_, _], field: Field[_, _]) extends AbstractChange with TypeChange with Product with Serializable
  36. case class FieldTypeChanged(tpe: ObjectLikeType[_, _], field: Field[_, _], breaking: Boolean, oldFieldType: OutputType[_], newFieldType: OutputType[_]) extends AbstractChange with TypeChange with Product with Serializable
  37. case class InputFieldAdded(tpe: InputObjectType[_], field: InputField[_], breaking: Boolean) extends AbstractChange with TypeChange with Product with Serializable
  38. case class InputFieldAstDirectiveAdded(tpe: InputObjectType[_], field: InputField[_], directive: ast.Directive) extends AbstractAstDirectiveAdded with Product with Serializable
  39. case class InputFieldAstDirectiveRemoved(tpe: InputObjectType[_], field: InputField[_], directive: ast.Directive) extends AbstractAstDirectiveRemoved with Product with Serializable
  40. case class InputFieldDefaultChanged(tpe: InputObjectType[_], field: InputField[_], oldDefault: Option[ast.Value], newDefault: Option[ast.Value]) extends AbstractChange with TypeChange with Product with Serializable
  41. case class InputFieldDescriptionChanged(tpe: InputObjectType[_], field: InputField[_], oldDescription: Option[String], newDescription: Option[String]) extends AbstractChange with DescriptionChange with TypeChange with Product with Serializable
  42. case class InputFieldRemoved(tpe: InputObjectType[_], field: InputField[_]) extends AbstractChange with TypeChange with Product with Serializable
  43. case class InputFieldTypeChanged(tpe: InputObjectType[_], field: InputField[_], breaking: Boolean, oldFieldType: InputType[_], newFieldType: InputType[_]) extends AbstractChange with TypeChange with Product with Serializable
  44. case class InputObjectTypeAstDirectiveAdded(tpe: InputObjectType[_], directive: ast.Directive) extends AbstractAstDirectiveAdded with Product with Serializable
  45. case class InputObjectTypeAstDirectiveRemoved(tpe: InputObjectType[_], directive: ast.Directive) extends AbstractAstDirectiveRemoved with Product with Serializable
  46. case class InterfaceTypeAstDirectiveAdded(tpe: InterfaceType[_, _], directive: ast.Directive) extends AbstractAstDirectiveAdded with Product with Serializable
  47. case class InterfaceTypeAstDirectiveRemoved(tpe: InterfaceType[_, _], directive: ast.Directive) extends AbstractAstDirectiveRemoved with Product with Serializable
  48. case class ObjectTypeArgumentAdded(tpe: ObjectLikeType[_, _], field: Field[_, _], argument: Argument[_], breaking: Boolean) extends AbstractChange with TypeChange with Product with Serializable
  49. case class ObjectTypeArgumentDefaultChanged(tpe: ObjectLikeType[_, _], field: Field[_, _], argument: Argument[_], oldDefault: Option[ast.Value], newDefault: Option[ast.Value]) extends AbstractChange with TypeChange with Product with Serializable
  50. case class ObjectTypeArgumentDescriptionChanged(tpe: ObjectLikeType[_, _], field: Field[_, _], argument: Argument[_], oldDescription: Option[String], newDescription: Option[String]) extends AbstractChange with DescriptionChange with TypeChange with Product with Serializable
  51. case class ObjectTypeArgumentRemoved(tpe: ObjectLikeType[_, _], field: Field[_, _], argument: Argument[_]) extends AbstractChange with TypeChange with Product with Serializable
  52. case class ObjectTypeArgumentTypeChanged(tpe: ObjectLikeType[_, _], field: Field[_, _], argument: Argument[_], breaking: Boolean, oldFieldType: InputType[_], newFieldType: InputType[_]) extends AbstractChange with TypeChange with Product with Serializable
  53. case class ObjectTypeAstDirectiveAdded(tpe: ObjectType[_, _], directive: ast.Directive) extends AbstractAstDirectiveAdded with Product with Serializable
  54. case class ObjectTypeAstDirectiveRemoved(tpe: ObjectType[_, _], directive: ast.Directive) extends AbstractAstDirectiveRemoved with Product with Serializable
  55. case class ObjectTypeInterfaceAdded(tpe: ObjectType[_, _], interface: InterfaceType[_, _]) extends AbstractChange with TypeChange with Product with Serializable
  56. case class ObjectTypeInterfaceRemoved(tpe: ObjectType[_, _], interface: InterfaceType[_, _]) extends AbstractChange with TypeChange with Product with Serializable
  57. case class ScalarTypeAstDirectiveAdded(tpe: ScalarType[_], directive: ast.Directive) extends AbstractAstDirectiveAdded with Product with Serializable
  58. case class ScalarTypeAstDirectiveRemoved(tpe: ScalarType[_], directive: ast.Directive) extends AbstractAstDirectiveRemoved with Product with Serializable
  59. case class SchemaAstDirectiveAdded(schema: Schema[_, _], directive: ast.Directive) extends AbstractAstDirectiveAdded with Product with Serializable
  60. case class SchemaAstDirectiveRemoved(schema: Schema[_, _], directive: ast.Directive) extends AbstractAstDirectiveRemoved with Product with Serializable
  61. case class SchemaDescriptionChanged(oldDescription: Option[String], newDescription: Option[String]) extends AbstractChange with DescriptionChange with Product with Serializable
  62. case class SchemaMutationTypeChanged(oldType: Option[ObjectType[_, _]], newType: Option[ObjectType[_, _]]) extends AbstractChange with Product with Serializable
  63. case class SchemaQueryTypeChanged(oldType: ObjectType[_, _], newType: ObjectType[_, _]) extends AbstractChange with Product with Serializable
  64. case class SchemaSubscriptionTypeChanged(oldType: Option[ObjectType[_, _]], newType: Option[ObjectType[_, _]]) extends AbstractChange with Product with Serializable
  65. case class TypeAdded(tpe: Type with Named) extends AbstractChange with TypeChange with Product with Serializable
  66. sealed trait TypeChange extends AnyRef
  67. case class TypeDescriptionChanged(tpe: Type with Named, oldDescription: Option[String], newDescription: Option[String]) extends AbstractChange with DescriptionChange with TypeChange with Product with Serializable
  68. case class TypeKindChanged(tpe: Type with Named, oldTpe: Type with Named) extends AbstractChange with TypeChange with Product with Serializable
  69. case class TypeRemoved(tpe: Type with Named) extends AbstractChange with TypeChange with Product with Serializable
  70. case class UnionMemberAdded(tpe: UnionType[_], member: ObjectType[_, _]) extends AbstractChange with TypeChange with Product with Serializable
  71. case class UnionMemberRemoved(tpe: UnionType[_], member: ObjectType[_, _]) extends AbstractChange with TypeChange with Product with Serializable
  72. case class UnionTypeAstDirectiveAdded(tpe: UnionType[_], directive: ast.Directive) extends AbstractAstDirectiveAdded with Product with Serializable
  73. case class UnionTypeAstDirectiveRemoved(tpe: UnionType[_], directive: ast.Directive) extends AbstractAstDirectiveRemoved 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(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