Hey. I want to upload a JSONObject (which is just a Map<String, Object> with some extra features but can be converted to a Map) but have no idea how.
Is there a short way or do I really have to write every single Object, Array and Value like this
FAUNA_CLIENT.query(
Update(
Ref(Collection("myCollection"), "MY_ID"),
Object("name", Value("value"))
)
).get();
?