Update returns a builder for updating this Node. Note that you need to call Node.Unwrap() before calling this method if this Node was returned from a transaction, and the transaction was committed or rolled back.
()
| 193 | // Note that you need to call Node.Unwrap() before calling this method if this Node |
| 194 | // was returned from a transaction, and the transaction was committed or rolled back. |
| 195 | func (n *Node) Update() *NodeUpdateOne { |
| 196 | return NewNodeClient(n.config).UpdateOne(n) |
| 197 | } |
| 198 | |
| 199 | // Unwrap unwraps the Node entity that was returned from a transaction after it was closed, |
| 200 | // so that all future queries will be executed through the driver which created the transaction. |
nothing calls this directly
no test coverage detected