Class: ArSerializer::GraphQL::ArgClass
- Inherits:
-
Object
- Object
- ArSerializer::GraphQL::ArgClass
- Includes:
- Serializable
- Defined in:
- lib/ar_serializer/graphql/types.rb
Instance Attribute Summary collapse
-
#name ⇒ Object
readonly
Returns the value of attribute name.
-
#type ⇒ Object
readonly
Returns the value of attribute type.
Instance Method Summary collapse
-
#initialize(name, type) ⇒ ArgClass
constructor
A new instance of ArgClass.
Constructor Details
#initialize(name, type) ⇒ ArgClass
Returns a new instance of ArgClass.
5 6 7 8 9 |
# File 'lib/ar_serializer/graphql/types.rb', line 5 def initialize(name, type) @optional = name.to_s.end_with? '?' # TODO: refactor @name = name.to_s.delete '?' @type = TypeClass.from type end |
Instance Attribute Details
#name ⇒ Object (readonly)
Returns the value of attribute name.
4 5 6 |
# File 'lib/ar_serializer/graphql/types.rb', line 4 def name @name end |
#type ⇒ Object (readonly)
Returns the value of attribute type.
4 5 6 |
# File 'lib/ar_serializer/graphql/types.rb', line 4 def type @type end |