Class: GraphQL::SchemaComparator::Changes::FieldArgumentAdded
- Inherits:
-
AbstractChange
- Object
- AbstractChange
- GraphQL::SchemaComparator::Changes::FieldArgumentAdded
- Defined in:
- lib/graphql/schema_comparator/changes.rb
Instance Attribute Summary collapse
-
#argument ⇒ Object
readonly
Returns the value of attribute argument.
-
#criticality ⇒ Object
readonly
Returns the value of attribute criticality.
-
#field ⇒ Object
readonly
Returns the value of attribute field.
-
#type ⇒ Object
readonly
Returns the value of attribute type.
Instance Method Summary collapse
-
#initialize(type, field, argument) ⇒ FieldArgumentAdded
constructor
A new instance of FieldArgumentAdded.
- #message ⇒ Object
Methods inherited from AbstractChange
#breaking?, #dangerous?, #non_breaking?
Constructor Details
#initialize(type, field, argument) ⇒ FieldArgumentAdded
Returns a new instance of FieldArgumentAdded.
467 468 469 470 471 472 473 474 475 476 477 |
# File 'lib/graphql/schema_comparator/changes.rb', line 467 def initialize(type, field, argument) @criticality = if argument.type.non_null? Changes::Criticality.breaking else Changes::Criticality.non_breaking end @type = type @field = field @argument = argument end |
Instance Attribute Details
#argument ⇒ Object (readonly)
Returns the value of attribute argument.
465 466 467 |
# File 'lib/graphql/schema_comparator/changes.rb', line 465 def argument @argument end |
#criticality ⇒ Object (readonly)
Returns the value of attribute criticality.
465 466 467 |
# File 'lib/graphql/schema_comparator/changes.rb', line 465 def criticality @criticality end |
#field ⇒ Object (readonly)
Returns the value of attribute field.
465 466 467 |
# File 'lib/graphql/schema_comparator/changes.rb', line 465 def field @field end |
#type ⇒ Object (readonly)
Returns the value of attribute type.
465 466 467 |
# File 'lib/graphql/schema_comparator/changes.rb', line 465 def type @type end |
Instance Method Details
#message ⇒ Object
479 480 481 |
# File 'lib/graphql/schema_comparator/changes.rb', line 479 def "Argument `#{argument.name}: #{argument.type}` added to field `#{type.name}.#{field.name}`" end |