Object/Trait

sangria.schema

SchemaChange

Related Docs: trait SchemaChange | package schema

Permalink

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. All

Type Members

  1. abstract class AbstractAstDirectiveAdded extends AstDirectiveAdded

    Permalink
  2. abstract class AbstractAstDirectiveRemoved extends AstDirectiveRemoved

    Permalink
  3. sealed abstract class AbstractChange extends SchemaChange

    Permalink
  4. trait AstDirectiveAdded extends SchemaChange

    Permalink
  5. trait AstDirectiveRemoved extends SchemaChange

    Permalink
  6. sealed trait DeprecationChange extends TypeChange

    Permalink
  7. sealed trait DescriptionChange extends TypeChange

    Permalink
  8. case class DirectiveAdded(directive: Directive) extends AbstractChange with Product with Serializable

    Permalink
  9. case class DirectiveArgumentAdded(directive: Directive, argument: Argument[_], breaking: Boolean) extends AbstractChange with Product with Serializable

    Permalink
  10. case class DirectiveArgumentAstDirectiveAdded(dir: Directive, argument: Argument[_], directive: ast.Directive) extends AbstractAstDirectiveAdded with Product with Serializable

    Permalink
  11. case class DirectiveArgumentAstDirectiveRemoved(dir: Directive, argument: Argument[_], directive: ast.Directive) extends AbstractAstDirectiveRemoved with Product with Serializable

    Permalink
  12. case class DirectiveArgumentDefaultChanged(directive: Directive, argument: Argument[_], oldDefault: Option[ast.Value], newDefault: Option[ast.Value]) extends AbstractChange with Product with Serializable

    Permalink
  13. case class DirectiveArgumentDescriptionChanged(directive: Directive, argument: Argument[_], oldDescription: Option[String], newDescription: Option[String]) extends AbstractChange with Product with Serializable

    Permalink
  14. case class DirectiveArgumentRemoved(directive: Directive, argument: Argument[_]) extends AbstractChange with Product with Serializable

    Permalink
  15. case class DirectiveArgumentTypeChanged(directive: Directive, argument: Argument[_], breaking: Boolean, oldFiledType: InputType[_], newFieldType: InputType[_]) extends AbstractChange with Product with Serializable

    Permalink
  16. case class DirectiveDescriptionChanged(directive: Directive, oldDescription: Option[String], newDescription: Option[String]) extends AbstractChange with Product with Serializable

    Permalink
  17. case class DirectiveLocationAdded(directive: Directive, location: DirectiveLocation.Value) extends AbstractChange with Product with Serializable

    Permalink
  18. case class DirectiveLocationRemoved(directive: Directive, location: DirectiveLocation.Value) extends AbstractChange with Product with Serializable

    Permalink
  19. case class DirectiveRemoved(directive: Directive) extends AbstractChange with Product with Serializable

    Permalink
  20. case class EnumTypeAstDirectiveAdded(tpe: EnumType[_], directive: ast.Directive) extends AbstractAstDirectiveAdded with Product with Serializable

    Permalink
  21. case class EnumTypeAstDirectiveRemoved(tpe: EnumType[_], directive: ast.Directive) extends AbstractAstDirectiveRemoved with Product with Serializable

    Permalink
  22. case class EnumValueAdded(tpe: EnumType[_], value: EnumValue[_]) extends AbstractChange with TypeChange with Product with Serializable

    Permalink
  23. case class EnumValueAstDirectiveAdded(tpe: EnumType[_], value: EnumValue[_], directive: ast.Directive) extends AbstractAstDirectiveAdded with Product with Serializable

    Permalink
  24. case class EnumValueAstDirectiveRemoved(tpe: EnumType[_], value: EnumValue[_], directive: ast.Directive) extends AbstractAstDirectiveRemoved with Product with Serializable

    Permalink
  25. case class EnumValueDeprecated(tpe: EnumType[_], value: EnumValue[_], oldDeprecationReason: Option[String], newDeprecationReason: Option[String]) extends AbstractChange with DeprecationChange with Product with Serializable

    Permalink
  26. case class EnumValueDescriptionChanged(tpe: EnumType[_], value: EnumValue[_], oldDescription: Option[String], newDescription: Option[String]) extends AbstractChange with DescriptionChange with Product with Serializable

    Permalink
  27. case class EnumValueRemoved(tpe: EnumType[_], value: EnumValue[_]) extends AbstractChange with TypeChange with Product with Serializable

    Permalink
  28. case class FieldAdded(tpe: ObjectLikeType[_, _], field: Field[_, _]) extends AbstractChange with TypeChange with Product with Serializable

    Permalink
  29. case class FieldArgumentAstDirectiveAdded(tpe: ObjectLikeType[_, _], field: Field[_, _], argument: Argument[_], directive: ast.Directive) extends AbstractAstDirectiveAdded with Product with Serializable

    Permalink
  30. case class FieldArgumentAstDirectiveRemoved(tpe: ObjectLikeType[_, _], field: Field[_, _], argument: Argument[_], directive: ast.Directive) extends AbstractAstDirectiveRemoved with Product with Serializable

    Permalink
  31. case class FieldAstDirectiveAdded(tpe: ObjectLikeType[_, _], field: Field[_, _], directive: ast.Directive) extends AbstractAstDirectiveAdded with Product with Serializable

    Permalink
  32. case class FieldAstDirectiveRemoved(tpe: ObjectLikeType[_, _], field: Field[_, _], directive: ast.Directive) extends AbstractAstDirectiveRemoved with Product with Serializable

    Permalink
  33. case class FieldDeprecationChanged(tpe: ObjectLikeType[_, _], field: Field[_, _], oldDeprecationReason: Option[String], newDeprecationReason: Option[String]) extends AbstractChange with DeprecationChange with Product with Serializable

    Permalink
  34. case class FieldDescriptionChanged(tpe: ObjectLikeType[_, _], field: Field[_, _], oldDescription: Option[String], newDescription: Option[String]) extends AbstractChange with DescriptionChange with Product with Serializable

    Permalink
  35. case class FieldRemoved(tpe: ObjectLikeType[_, _], field: Field[_, _]) extends AbstractChange with TypeChange with Product with Serializable

    Permalink
  36. case class FieldTypeChanged(tpe: ObjectLikeType[_, _], field: Field[_, _], breaking: Boolean, oldFiledType: OutputType[_], newFieldType: OutputType[_]) extends AbstractChange with TypeChange with Product with Serializable

    Permalink
  37. case class InputFieldAdded(tpe: InputObjectType[_], field: InputField[_], breaking: Boolean) extends AbstractChange with TypeChange with Product with Serializable

    Permalink
  38. case class InputFieldAstDirectiveAdded(tpe: InputObjectType[_], field: InputField[_], directive: ast.Directive) extends AbstractAstDirectiveAdded with Product with Serializable

    Permalink
  39. case class InputFieldAstDirectiveRemoved(tpe: InputObjectType[_], field: InputField[_], directive: ast.Directive) extends AbstractAstDirectiveRemoved with Product with Serializable

    Permalink
  40. case class InputFieldDefaultChanged(tpe: InputObjectType[_], field: InputField[_], oldDefault: Option[ast.Value], newDefault: Option[ast.Value]) extends AbstractChange with TypeChange with Product with Serializable

    Permalink
  41. case class InputFieldDescriptionChanged(tpe: InputObjectType[_], field: InputField[_], oldDescription: Option[String], newDescription: Option[String]) extends AbstractChange with DescriptionChange with Product with Serializable

    Permalink
  42. case class InputFieldRemoved(tpe: InputObjectType[_], field: InputField[_]) extends AbstractChange with TypeChange with Product with Serializable

    Permalink
  43. case class InputFieldTypeChanged(tpe: InputObjectType[_], field: InputField[_], breaking: Boolean, oldFiledType: InputType[_], newFieldType: InputType[_]) extends AbstractChange with TypeChange with Product with Serializable

    Permalink
  44. case class InputObjectTypeAstDirectiveAdded(tpe: InputObjectType[_], directive: ast.Directive) extends AbstractAstDirectiveAdded with Product with Serializable

    Permalink
  45. case class InputObjectTypeAstDirectiveRemoved(tpe: InputObjectType[_], directive: ast.Directive) extends AbstractAstDirectiveRemoved with Product with Serializable

    Permalink
  46. case class InterfaceTypeAstDirectiveAdded(tpe: InterfaceType[_, _], directive: ast.Directive) extends AbstractAstDirectiveAdded with Product with Serializable

    Permalink
  47. case class InterfaceTypeAstDirectiveRemoved(tpe: InterfaceType[_, _], directive: ast.Directive) extends AbstractAstDirectiveRemoved with Product with Serializable

    Permalink
  48. case class ObjectTypeArgumentAdded(tpe: ObjectLikeType[_, _], field: Field[_, _], argument: Argument[_], breaking: Boolean) extends AbstractChange with TypeChange with Product with Serializable

    Permalink
  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

    Permalink
  50. case class ObjectTypeArgumentDescriptionChanged(tpe: ObjectLikeType[_, _], field: Field[_, _], argument: Argument[_], oldDescription: Option[String], newDescription: Option[String]) extends AbstractChange with DescriptionChange with Product with Serializable

    Permalink
  51. case class ObjectTypeArgumentRemoved(tpe: ObjectLikeType[_, _], field: Field[_, _], argument: Argument[_]) extends AbstractChange with TypeChange with Product with Serializable

    Permalink
  52. case class ObjectTypeArgumentTypeChanged(tpe: ObjectLikeType[_, _], field: Field[_, _], argument: Argument[_], breaking: Boolean, oldFiledType: InputType[_], newFieldType: InputType[_]) extends AbstractChange with TypeChange with Product with Serializable

    Permalink
  53. case class ObjectTypeAstDirectiveAdded(tpe: ObjectType[_, _], directive: ast.Directive) extends AbstractAstDirectiveAdded with Product with Serializable

    Permalink
  54. case class ObjectTypeAstDirectiveRemoved(tpe: ObjectType[_, _], directive: ast.Directive) extends AbstractAstDirectiveRemoved with Product with Serializable

    Permalink
  55. case class ObjectTypeInterfaceAdded(tpe: ObjectType[_, _], interface: InterfaceType[_, _]) extends AbstractChange with TypeChange with Product with Serializable

    Permalink
  56. case class ObjectTypeInterfaceRemoved(tpe: ObjectType[_, _], interface: InterfaceType[_, _]) extends AbstractChange with TypeChange with Product with Serializable

    Permalink
  57. case class ScalarTypeAstDirectiveAdded(tpe: ScalarType[_], directive: ast.Directive) extends AbstractAstDirectiveAdded with Product with Serializable

    Permalink
  58. case class ScalarTypeAstDirectiveRemoved(tpe: ScalarType[_], directive: ast.Directive) extends AbstractAstDirectiveRemoved with Product with Serializable

    Permalink
  59. case class SchemaAstDirectiveAdded(schema: Schema[_, _], directive: ast.Directive) extends AbstractAstDirectiveAdded with Product with Serializable

    Permalink
  60. case class SchemaAstDirectiveRemoved(schema: Schema[_, _], directive: ast.Directive) extends AbstractAstDirectiveRemoved with Product with Serializable

    Permalink
  61. case class SchemaMutationTypeChanged(oldType: Option[ObjectType[_, _]], newType: Option[ObjectType[_, _]]) extends AbstractChange with Product with Serializable

    Permalink
  62. case class SchemaQueryTypeChanged(oldType: ObjectType[_, _], newType: ObjectType[_, _]) extends AbstractChange with Product with Serializable

    Permalink
  63. case class SchemaSubscriptionTypeChanged(oldType: Option[ObjectType[_, _]], newType: Option[ObjectType[_, _]]) extends AbstractChange with Product with Serializable

    Permalink
  64. case class TypeAdded(tpe: Type with Named) extends AbstractChange with TypeChange with Product with Serializable

    Permalink
  65. sealed trait TypeChange extends AnyRef

    Permalink
  66. case class TypeDescriptionChanged(tpe: Type with Named, oldDescription: Option[String], newDescription: Option[String]) extends AbstractChange with DescriptionChange with Product with Serializable

    Permalink
  67. case class TypeKindChanged(tpe: Type with Named, oldTpe: Type with Named) extends AbstractChange with TypeChange with Product with Serializable

    Permalink
  68. case class TypeRemoved(tpe: Type with Named) extends AbstractChange with TypeChange with Product with Serializable

    Permalink
  69. case class UnionMemberAdded(tpe: UnionType[_], member: ObjectType[_, _]) extends AbstractChange with TypeChange with Product with Serializable

    Permalink
  70. case class UnionMemberRemoved(tpe: UnionType[_], member: ObjectType[_, _]) extends AbstractChange with TypeChange with Product with Serializable

    Permalink
  71. case class UnionTypeAstDirectiveAdded(tpe: UnionType[_], directive: ast.Directive) extends AbstractAstDirectiveAdded with Product with Serializable

    Permalink
  72. case class UnionTypeAstDirectiveRemoved(tpe: UnionType[_], directive: ast.Directive) extends AbstractAstDirectiveRemoved with Product with Serializable

    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. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  11. final def isInstanceOf[T0]: Boolean

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

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

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

    Permalink
    Definition Classes
    AnyRef
  15. final def synchronized[T0](arg0: ⇒ T0): T0

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

    Permalink
    Definition Classes
    AnyRef → Any
  17. final def wait(): Unit

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

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

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

Inherited from AnyRef

Inherited from Any

Ungrouped