StoreSemantics
in
An object which contains how to define the document level action to take during a MutateIn operation.
Table of Contents
- INSERT = "insert"
- Create the document or fail if it already exists.
- REPLACE = "replace"
- Replace the document, and fail if it does not exist.
- UPSERT = "upsert"
- Replace the document or create it if it does not exist.
Constants
INSERT
Create the document or fail if it already exists.
public
mixed
INSERT
= "insert"
REPLACE
Replace the document, and fail if it does not exist.
public
mixed
REPLACE
= "replace"
UPSERT
Replace the document or create it if it does not exist.
public
mixed
UPSERT
= "upsert"