Class: GraphQL::SchemaComparator::Changes::FieldDeprecationChanged

Inherits:
AbstractChange
  • Object
show all
Defined in:
lib/graphql/schema_comparator/changes.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from AbstractChange

#breaking?, #dangerous?, #non_breaking?

Constructor Details

#initialize(type, old_field, new_field) ⇒ FieldDeprecationChanged

Returns a new instance of FieldDeprecationChanged.



644
645
646
647
648
649
# File 'lib/graphql/schema_comparator/changes.rb', line 644

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

#criticalityObject (readonly)

Returns the value of attribute criticality.



642
643
644
# File 'lib/graphql/schema_comparator/changes.rb', line 642

def criticality
  @criticality
end

#new_fieldObject (readonly)

Returns the value of attribute new_field.



642
643
644
# File 'lib/graphql/schema_comparator/changes.rb', line 642

def new_field
  @new_field
end

#old_fieldObject (readonly)

Returns the value of attribute old_field.



642
643
644
# File 'lib/graphql/schema_comparator/changes.rb', line 642

def old_field
  @old_field
end

#typeObject (readonly)

Returns the value of attribute type.



642
643
644
# File 'lib/graphql/schema_comparator/changes.rb', line 642

def type
  @type
end

Instance Method Details

#messageObject



651
652
653
654
# File 'lib/graphql/schema_comparator/changes.rb', line 651

def message
  "Deprecation reason on field `#{type.name}.#{new_field.name}` has changed "\
    "from `#{old_field.deprecation_reason}` to `#{new_field.deprecation_reason}`"
end