Uh oh!
There was an error while loading. Please reload this page.
Add support for updating records - #8
Merged
Merged
Conversation
Callum027force-pushed
the
callum/add-update-method
branch
4 times, most recently
from
October 16, 2025 19:02
a9d224b to
24c7ad7CompareThis adds support for updating records in place, using new `update` methods added to the record and record manager base classes. The `update` method has the same smart evaluation of field names based on record classes that the `create` method has. This allows ID or object field names to be used for model refs, and field aliases.
Callum027force-pushed
the
callum/add-update-method
branch
from
October 17, 2025 01:50
24c7ad7 to
763759fCompareCallum027force-pushed
the
callum/add-update-method
branch
from
November 12, 2025 04:01
5aaee01 to
763759fCompareadrianjarvis
commented
Nov 12, 2025
Contributor
Looks good to me. |
Uh oh!
There was an error while loading. Please reload this page.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for freeto join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This adds support for updating records in place, using new
updatemethods added to the record and record manager base classes.The
updatemethod has the same smart evaluation of field names based on record classes that thecreatemethod has. This allows ID or object field names to be used for model refs, and field aliases.