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.



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

#criticalityObject (readonly)

Returns the value of attribute criticality.



874
875
876
# File 'lib/graphql/schema_comparator/changes.rb', line 874

def criticality
  @criticality
end

#new_fieldObject (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_fieldObject (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

#typeObject (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

#messageObject



883
884
885
886
# File 'lib/graphql/schema_comparator/changes.rb', line 883

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

#pathObject



888
889
890
# File 'lib/graphql/schema_comparator/changes.rb', line 888

def path
  old_field.path
end