From 563238334daaa9a7a0e0f73ee8d84695188e009c Mon Sep 17 00:00:00 2001 From: Alan Reid Date: Thu, 2 Jan 2025 18:12:04 +0000 Subject: [PATCH] Update to the version_type --- cosmetics-web/app/graphql/types/version_type.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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