Creates an insert operation that appends the provided items.
insert
The items to append.
An insert operation for adding a value to the end of an array. https://www.sanity.io/docs/http-patches#Cw4vhD88
const appendFoo = append('foo')const appendObject = append({name: 'foo'})const appendObjects = append([{name: 'foo'}, [{name: 'bar'}]]) Copy
const appendFoo = append('foo')const appendObject = append({name: 'foo'})const appendObjects = append([{name: 'foo'}, [{name: 'bar'}]])
Creates an
insert
operation that appends the provided items.