Skip to content
Legacy docs for Tenzir v5.x. For the latest Tenzir v6 series, visit docs.tenzir.com. Migrating from v5? Read the Tenzir v6 migration guide.

Moves values from one field to another, removing the original field.

move to=from,

Moves from the field from to the field to.

The field to move into.

The field to move from.

from {x: 1, y: 2}
move z=y, w.x=x
{
z: 2,
w: {
x: 1,
},
}

Last updated: