async_req
Input
new_document= {"id": "131",
"name": "dave",
"age": 43}
hyperspace_client.update_document(body=new_document,
collection_name='partial_update',
async_req=True);Document doc = new Document();
doc.setId("131");
doc.putAdditionalProperty("name", "dave");
doc.putAdditionalProperty("age", 43);
boolean partialUpdate = true;
boolean docAsUpsert = true;
hyperspaceClient.updateDocument(new_document, collection_name, partialUpdate, docAsUpsert, async_req=True);const new_document= {"id": "131",
"name": "dave",
"age": 43}
const partialUpdate = true;
const docAsUpsert = true;
await hyperspaceClient.updateDocument(collectionName, new_document, async_req=True);Last updated