MCPcopy Create free account
hub / github.com/parse-community/parse-server / create

Function create

src/StatusHandler.js:36–40  ·  view source on GitHub ↗
(object)

Source from the content-addressed store, hash-verified

34
35function statusHandler(className, database) {
36 function create(object) {
37 return database.create(className, object).then(() => {
38 return Promise.resolve(object);
39 });
40 }
41
42 function update(where, object) {
43 return jobPromiseQueue.enqueue(where.objectId, () => database.update(className, where, object));

Callers

nothing calls this directly

Calls 1

createMethod · 0.80

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…