mutations property
The mutations to perform.
When mode is TRANSACTIONAL
, mutations affecting a single entity are
applied in order. The following sequences of mutations affecting a single
entity are not permitted in a single Commit
request: - insert
followed
by insert
- update
followed by insert
- upsert
followed by
insert
- delete
followed by update
When mode is NON_TRANSACTIONAL
,
no two mutations may affect a single entity.
Implementation
core.List<Mutation>? mutations;