Class: GraphQL::SchemaComparator::Changes::FieldDeprecationChanged
- Inherits:
-
AbstractChange
- Object
- AbstractChange
- GraphQL::SchemaComparator::Changes::FieldDeprecationChanged
- 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) ⇒ FieldDeprecationChanged
constructor
A new instance of FieldDeprecationChanged.
- #message ⇒ Object
- #path ⇒ Object
Methods inherited from AbstractChange
#breaking?, #dangerous?, #non_breaking?
Constructor Details
#initialize(type, old_field, new_field) ⇒ FieldDeprecationChanged
Returns a new instance of FieldDeprecationChanged.
876 877 878 879 880 881 |
# File 'lib/graphql/schema_comparator/changes.rb', line 876 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.
874 875 876 |
# File 'lib/graphql/schema_comparator/changes.rb', line 874 def criticality @criticality end |
#new_field ⇒ Object (readonly)
Returns the value of attribute new_field.
874 875 876 |
# File 'lib/graphql/schema_comparator/changes.rb', line 874 def new_field @new_field end |
#old_field ⇒ Object (readonly)
Returns the value of attribute old_field.
874 875 876 |
# File 'lib/graphql/schema_comparator/changes.rb', line 874 def old_field @old_field end |
#type ⇒ Object (readonly)
Returns the value of attribute type.
874 875 876 |
# File 'lib/graphql/schema_comparator/changes.rb', line 874 def type @type end |
Instance Method Details
#message ⇒ Object
883 884 885 886 |
# File 'lib/graphql/schema_comparator/changes.rb', line 883 def "Deprecation reason on field `#{new_field.path}` has changed "\ "from `#{old_field.deprecation_reason}` to `#{new_field.deprecation_reason}`" end |
#path ⇒ Object
888 889 890 |
# File 'lib/graphql/schema_comparator/changes.rb', line 888 def path old_field.path end |