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

Function find

spec/ParseLiveQueryServer.spec.js:1521–1529  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1519 return this;
1520 },
1521 find() {
1522 if (!shouldReturn) {
1523 return Promise.resolve([]);
1524 }
1525 //Return a role with the name "liveQueryRead" as that is what was set on the ACL
1526 const liveQueryRole = new Parse.Role('liveQueryRead', new Parse.ACL());
1527 liveQueryRole.id = 'abcdef1234';
1528 return Promise.resolve([liveQueryRole]);
1529 },
1530 };
1531 });
1532

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…