edgedb-js
edgedb-js copied to clipboard
Support nested inserts with plain data
Describe the proposed feature A clear and concise description of the syntax, what you want to happen, and why it's needed.
e.insert(e.Movie, {
title: "Movie",
actors: [{ name: "Bob"}, { name: "Alice"}]
})
This will get compiled as a for loop under the hood.