We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
class A < Grape::Entity self.hash_access = :to_s expose :a expose :b, expose_nil: false end A.represent({ 'a' => 1, 'b' => 2 }).as_json # expected: { a: 1, b: 2 } # actual: { a: 1 }