Class: GraphQL::SchemaComparator::Changes::FieldAdded
- Inherits:
-
AbstractChange
- Object
- AbstractChange
- GraphQL::SchemaComparator::Changes::FieldAdded
- Defined in:
- lib/graphql/schema_comparator/changes.rb
Instance Attribute Summary collapse
-
#criticality ⇒ Object
readonly
Returns the value of attribute criticality.
-
#field ⇒ Object
readonly
Returns the value of attribute field.
-
#object_type ⇒ Object
readonly
Returns the value of attribute object_type.
Instance Method Summary collapse
-
#initialize(object_type, field) ⇒ FieldAdded
constructor
A new instance of FieldAdded.
- #message ⇒ Object
Methods inherited from AbstractChange
#breaking?, #dangerous?, #non_breaking?
Constructor Details
#initialize(object_type, field) ⇒ FieldAdded
Returns a new instance of FieldAdded.
664 665 666 667 668 |
# File 'lib/graphql/schema_comparator/changes.rb', line 664 def initialize(object_type, field) @criticality = Changes::Criticality.non_breaking @object_type = object_type @field = field end |
Instance Attribute Details
#criticality ⇒ Object (readonly)
Returns the value of attribute criticality.
662 663 664 |
# File 'lib/graphql/schema_comparator/changes.rb', line 662 def criticality @criticality end |
#field ⇒ Object (readonly)
Returns the value of attribute field.
662 663 664 |
# File 'lib/graphql/schema_comparator/changes.rb', line 662 def field @field end |
#object_type ⇒ Object (readonly)
Returns the value of attribute object_type.
662 663 664 |
# File 'lib/graphql/schema_comparator/changes.rb', line 662 def object_type @object_type end |
Instance Method Details
#message ⇒ Object
670 671 672 |
# File 'lib/graphql/schema_comparator/changes.rb', line 670 def "Field `#{field.name}` was added to object type `#{object_type.name}`" end |