MCPcopy Create free account
hub / github.com/UsefulSoftwareCo/executor / create

Function create

packages/core/fumadb/src/query/orm/index.ts:552–556  ·  view source on GitHub ↗
(name, values)

Source from the content-addressed store, hash-verified

550 }
551 },
552 async create(name, values) {
553 const table = toTable(name);
554 await runCreatePolicies(table, values, context);
555 return await internal.create(table, values);
556 },
557 async createMany(name, values) {
558 const table = toTable(name);
559 for (const value of values) {

Callers

nothing calls this directly

Calls 2

toTableFunction · 0.85
runCreatePoliciesFunction · 0.85

Tested by

no test coverage detected