Hi,
When updating a node, do the things that are already equal to the update values are also getting updated (a write operation occurs)?
Example: assuming I have the type Cat
, and it has a name and eye color predicates. I inserted one cat to my DB with the name Schrodinger and eye color gray and got its xid 0x1.
What will happen if I send the following request:
mutate updateCat(filter: {id: "0x1"}){
set {
name: Schrodinger,
eyeColor: blue
}
}