Method: Rails::GraphQL::Request::PreparedData#all
- Defined in:
- lib/rails/graphql/request/prepared_data.rb
#all ⇒ Object
The the whole value, because the prepare stage always deal with all the information available
76 77 78 |
# File 'lib/rails/graphql/request/prepared_data.rb', line 76 def all @field.array? ? Array.wrap(@value) : @value end |