Skip to content
This repository was archived by the owner on Apr 14, 2022. It is now read-only.

Commit 13ea035

Browse files
committed
Make mutation order description more clear
1 parent 2bb6e98 commit 13ea035

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -300,9 +300,10 @@ Consider the following details:
300300
`update` argument, then connected objects are selected.
301301
* The `limit` and `offset` arguments applied before update, so a user can use
302302
`limit: 1` to update only first match.
303-
* Objects traversed in deep-first up-first order as it written in a mutation
304-
request. So an `update` argument potentially changes those fields that are
305-
follows the updated object in this order.
303+
* Objects are traversed in pre-order depth-first way, object's fields are
304+
traversed in an order as they are written in a mutation request. So an
305+
`update` argument potentially changes those fields that are follows the
306+
updated object in this order.
306307
* Filters by connected objects are performed before update. Resulting connected
307308
objects given after the update (it is matter when a field(s) of the parent
308309
objects by whose the connection is made is subject to change).

0 commit comments

Comments
 (0)