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

Function each

spec/ParseLiveQueryServer.spec.js:1577–1583  ·  view source on GitHub ↗
(callback)

Source from the content-addressed store, hash-verified

1575 return Promise.resolve([liveQueryRole]);
1576 },
1577 each(callback) {
1578 //Return a role with the name "liveQueryRead" as that is what was set on the ACL
1579 const liveQueryRole = new Parse.Role('liveQueryRead', new Parse.ACL());
1580 liveQueryRole.id = 'abcdef1234';
1581 callback(liveQueryRole);
1582 return Promise.resolve();
1583 },
1584 };
1585 });
1586

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…