Class: GraphQL::SchemaComparator::Changes::FieldDescriptionChanged

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) ⇒ FieldDescriptionChanged

Returns a new instance of FieldDescriptionChanged.



815
816
817
818
819
820
# File 'lib/graphql/schema_comparator/changes.rb', line 815

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.



813
814
815
# File 'lib/graphql/schema_comparator/changes.rb', line 813

def criticality
  @criticality
end

#new_fieldObject (readonly)

Returns the value of attribute new_field.



813
814
815
# File 'lib/graphql/schema_comparator/changes.rb', line 813

def new_field
  @new_field
end

#old_fieldObject (readonly)

Returns the value of attribute old_field.



813
814
815
# File 'lib/graphql/schema_comparator/changes.rb', line 813

def old_field
  @old_field
end

#typeObject (readonly)

Returns the value of attribute type.



813
814
815
# File 'lib/graphql/schema_comparator/changes.rb', line 813

def type
  @type
end

Instance Method Details

#messageObject



822
823
824
825
# File 'lib/graphql/schema_comparator/changes.rb', line 822

def message
  "Field `#{old_field.path}` description changed"\
    " from `#{old_field.description}` to `#{new_field.description}`"
end

#pathObject



827
828
829
# File 'lib/graphql/schema_comparator/changes.rb', line 827

def path
  old_field.path
end