Array operations Schema-less Array Operations API Array operations 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18await g.sys.db.gen.arrayOperationsGen({ instance: 'INSTANCE_NAME', database: 'DATABASE_NAME', collection: 'COLLECTION_NAME', find: { "id": 1 }, operations: [ { operation: "push", path: "attributes.color", dataToPush: [ "YELLOW", "SKY_BLUE" ] } ] }); Array operations headers support1 2 3 4 5 6await g.sys.db.gen.arrayOperationsGen({ // ... headers: { "x-am-authorization": "TOKEN" } });