Skip to content

Commit

Permalink
Update to the version_type
Browse files Browse the repository at this point in the history
  • Loading branch information
alan-at-work committed Jan 2, 2025
1 parent 7323c13 commit 551e7f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cosmetics-web/app/graphql/types/version_type.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 551e7f5

Please sign in to comment.