diff --git a/cosmetics-web/app/graphql/types/version_type.rb b/cosmetics-web/app/graphql/types/version_type.rb index 48af81f0e7..c3d2ae933e 100644 --- a/cosmetics-web/app/graphql/types/version_type.rb +++ b/cosmetics-web/app/graphql/types/version_type.rb @@ -8,7 +8,7 @@ class VersionType < BaseObject field :item_id, ID, null: false, camelize: false, description: "ID of the record that was versioned" field :event, String, null: false, camelize: false, description: "PaperTrail event (create/update/destroy)" field :whodunnit, String, null: true, camelize: false, description: "Who or what made the change" - field :object, GraphQL::Types::JSON, null: true, camelize: false, description: "State of the record prior to this version (if retained)" + field :object_state, GraphQL::Types::JSON, null: true, camelize: false, description: "State of the record prior to this version (if retained)", method: :object field :object_changes, GraphQL::Types::JSON, null: true, camelize: false, description: "Diff of changes in this version (if retained)" field :created_at, GraphQL::Types::ISO8601DateTime, null: true, camelize: false, description: "When the version was created" end