Class: GraphQL::SchemaComparator::Changes::FieldDescriptionChanged
- Inherits:
-
AbstractChange
- Object
- AbstractChange
- GraphQL::SchemaComparator::Changes::FieldDescriptionChanged
- Defined in:
- lib/graphql/schema_comparator/changes.rb
Instance Attribute Summary collapse
-
#criticality ⇒ Object
readonly
Returns the value of attribute criticality.
-
#new_field ⇒ Object
readonly
Returns the value of attribute new_field.
-
#old_field ⇒ Object
readonly
Returns the value of attribute old_field.
-
#type ⇒ Object
readonly
Returns the value of attribute type.
Instance Method Summary collapse
-
#initialize(type, old_field, new_field) ⇒ FieldDescriptionChanged
constructor
A new instance of FieldDescriptionChanged.
- #message ⇒ Object
Methods inherited from AbstractChange
#breaking?, #dangerous?, #non_breaking?
Constructor Details
#initialize(type, old_field, new_field) ⇒ FieldDescriptionChanged
Returns a new instance of FieldDescriptionChanged.
599 600 601 602 603 604 |
# File 'lib/graphql/schema_comparator/changes.rb', line 599 def initialize(type, old_field, new_field) @criticality = Changes::Criticality.non_breaking @type = type @old_field = old_field @new_field = new_field end |
Instance Attribute Details
#criticality ⇒ Object (readonly)
Returns the value of attribute criticality.
597 598 599 |
# File 'lib/graphql/schema_comparator/changes.rb', line 597 def criticality @criticality end |
#new_field ⇒ Object (readonly)
Returns the value of attribute new_field.
597 598 599 |
# File 'lib/graphql/schema_comparator/changes.rb', line 597 def new_field @new_field end |
#old_field ⇒ Object (readonly)
Returns the value of attribute old_field.
597 598 599 |
# File 'lib/graphql/schema_comparator/changes.rb', line 597 def old_field @old_field end |
#type ⇒ Object (readonly)
Returns the value of attribute type.
597 598 599 |
# File 'lib/graphql/schema_comparator/changes.rb', line 597 def type @type end |
Instance Method Details
#message ⇒ Object
606 607 608 609 |
# File 'lib/graphql/schema_comparator/changes.rb', line 606 def "Field `#{type.name}.#{old_field.name}` description changed"\ " from `#{old_field.description}` to `#{new_field.description}`" end |