@@ -141,23 +141,23 @@ be consistent.
141
141
Mutations are disabled in the resharding state of a shard cluster.
142
142
143
143
There are three types of modifications: insert, update and delete. Several
144
- modifications are allowed in an one GraphQL request, but they will be processed
145
- in non-transactional way.
144
+ modifications are allowed in one GraphQL request, but they will be processed in
145
+ non-transactional way.
146
146
147
147
In the case of shard accessor the following constraints can guarantee that data
148
- will be changed in atomic way or, in other words, in an one shard request (but
148
+ will be changed in atomic way or, in other words, in one shard request (but
149
149
foregoing and upcoming selects can see other data):
150
150
151
151
* One insert / update / delete argument over the entire GraphQL request.
152
152
* For update / delete: either the argument is for 1:1 connection or ` limit: 1 `
153
- is used for a collection (a topmost field) or 1: N connection (a nested
153
+ is used for a collection (a upmost field) or 1: N connection (a nested
154
154
field).
155
155
* No update of a first field of a ** tuple** (shard key is calculated by it). It
156
156
is the first field of upmost record in the schema for a collection in case
157
157
when there are no service fields. If there are service fields, the first
158
158
field of a tuple cannot be changed by a mutation GraphQL request.
159
159
160
- Data can be changed between shard requests which are part of the one GraphQL
160
+ Data can be changed between shard requests which are part of one GraphQL
161
161
request, so the result can observe inconsistent state. We'll don't show all
162
162
possible cases, but give an idea what going on in the following paragraph.
163
163
@@ -229,7 +229,7 @@ Consider the following details:
229
229
#### Update
230
230
231
231
Example with an update statement passed from a variable. Note that here we
232
- update an object given by a connection (inside an one of nested fields of a
232
+ update an object given by a connection (inside one of nested fields of a
233
233
request):
234
234
235
235
```
@@ -336,7 +336,7 @@ Consider the following details:
336
336
* The ` delete ` argument is forbidden with ` insert ` or ` update ` arguments.
337
337
* The ` delete ` argument is forbidden in ` query ` requests.
338
338
* The same fields traversal order and 'select -> change -> select connected'
339
- order of operations for an one field are applied likewise for the ` update `
339
+ order of operations for one field are applied likewise for the ` update `
340
340
argument.
341
341
* The ` limit ` argument can be used to define how many objects are subject to
342
342
deletion and ` offset ` can help with adjusting start point of multi-object
0 commit comments