Method: GraphQL::Schema::EnumValue#value
- Defined in:
- lib/graphql/schema/enum_value.rb
#value(new_val = nil) ⇒ Object
69 70 71 72 73 74 |
# File 'lib/graphql/schema/enum_value.rb', line 69 def value(new_val = nil) unless new_val.nil? @value = new_val end @value end |