We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b94b252 commit fa6ee6bCopy full SHA for fa6ee6b
src/JsonApiDotNetCore/Services/IJsonApiContext.cs
@@ -25,7 +25,16 @@ public interface IQueryRequest
25
26
public interface IUpdateRequest
27
{
28
+ /// <summary>
29
+ /// The attributes that were included in a PATCH request.
30
+ /// Only the attributes in this dictionary should be updated.
31
+ /// </summary>
32
Dictionary<AttrAttribute, object> AttributesToUpdate { get; set; }
33
+
34
35
+ /// Any relationships that were included in a PATCH request.
36
+ /// Only the relationships in this dictionary should be updated.
37
38
Dictionary<RelationshipAttribute, object> RelationshipsToUpdate { get; set; }
39
}
40
0 commit comments