you could do sth like this
LET array = [{title: "a"},{title: "b"}] let res_a = (FOR item IN array INSERT item INTO collection_1 return NEW) let res_b = (INSERT {title: "c"} INTO collection_2 return NEW) return {res_a, res_b}