MCPcopy Index your code
hub / github.com/parse-community/parse-server / buildNestedAndQuery

Function buildNestedAndQuery

spec/RequestComplexity.spec.js:48–54  ·  view source on GitHub ↗
(depth)

Source from the content-addressed store, hash-verified

46 }
47
48 function buildNestedAndQuery(depth) {
49 let where = { username: 'test' };
50 for (let i = 0; i < depth; i++) {
51 where = { $and: [where, { username: 'test' }] };
52 }
53 return where;
54 }
55
56 function buildNestedNorQuery(depth) {
57 let where = { username: 'test' };

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected