-
Notifications
You must be signed in to change notification settings - Fork 0
Closed
Labels
enhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomers
Description
When someone calls a creation process in the repository layer, the returning value is denoted by Tuple{Optional{<:Int64},UpsertResult}. It means that the user is going to see:
(1, DearDiary.Created())It must be now a NamedTuple{Optional{<:Int64},UpsertResult}, making possible to annotate the returning values.
(id=1, DearDiary.Created())NamedTuple can be unpacked normally as a Tuple.
x, y = (a=1, b=2)So there's no breaking change exposed here.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomers