JsonPatchDocument.Apply method works on an object graph, but instead I want to apply a json patch to plain json.
For example, suppose I have this json:
{ "name": "JSON Patch", "text": "OLD" }
How can I apply a patch like this with C#?
[ { "op": "replace", "path": "/text", "value": "NEW VALUE" } ]
How is this done using C# and .NET core?