You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Metadata can be a JSON object, which we might want to attach to any data item object.
Example use cases:
Integration with external systems like GitHub, e.g. storing repo name on a backlog and issue ID on a workitem
Taking notes on workitems
Recording pomodoro interruptions
Grouping workitems by priority or importance
Scheduling workitems
More powerful tags
The simplest way would be to use PATCH semantics, i.e. using null values to delete keys. This means a single PatchMetadata strategy should be sufficient:
The size of such JSONs shouldn't grow too much to stay efficient. For example, we probably shouldn't use it for implementing habit trackers, for example.
The text was updated successfully, but these errors were encountered:
Metadata can be a JSON object, which we might want to attach to any data item object.
Example use cases:
The simplest way would be to use PATCH semantics, i.e. using
null
values to delete keys. This means a singlePatchMetadata
strategy should be sufficient:The size of such JSONs shouldn't grow too much to stay efficient. For example, we probably shouldn't use it for implementing habit trackers, for example.
The text was updated successfully, but these errors were encountered: