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

Function create

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

Source from the content-addressed store, hash-verified

368 });
369 },
370 async create(name, values) {
371 const table = toTable(name);
372 await runCreatePolicies(table, values, context);
373 return await internal.create(table, values);
374 },
375 async createMany(name, values) {
376 const table = toTable(name);
377 for (const value of values) {

Callers

nothing calls this directly

Calls 2

toTableFunction · 0.85
runCreatePoliciesFunction · 0.85

Tested by

no test coverage detected