--liquibase formatted cypher --changeset kturner:NR-2991-add-accounts-to-contributors-2:1 runOnChange: true UNWIND [ { id:"6d61ba22-afc3-4055-bc2d-9ecb611c81fc", vendorId:791384 }, { id:"3c5aab1d-3467-475a-b864-c70c363e3c04", vendorId:791605 }, { id:"5491c8a6-6130-4618-b614-b1410f85f6ce", vendorId:791919 }, { id:"aaea1909-6175-42ec-b323-2665e96009cc", vendorId:792288 }, { id:"420a7579-216e-4f99-bc59-e75479724311", vendorId:792311 }, { id:"420a7579-216e-4f99-bc59-e75479724311", vendorId:792340 }, { id:"0cd904c3-9798-4565-8ee9-dd11c1e0aa1d", vendorId:792850 }, { id:"08379788-d580-4379-b729-7de332ea8176", vendorId:793180 } ] AS contributor MERGE(v:Vendor{vendorId:contributor.vendorId})-[r:HAS_NR_CONTRIBUTOR]->(c:NrContributor:NrPerformance{id:contributor.id}) SET r.createdAt = datetime(), r.createdBy = "NR-2991-add-accounts-to-contributors", r.lastModifiedAt = datetime(), r.lastModifiedBy = "NR-2991-add-accounts-to-contributors" RETURN c,r,v;