(fieldCount)
| 49 | } |
| 50 | |
| 51 | function buildWideQuery(fieldCount) { |
| 52 | const fields = Array.from({ length: fieldCount }, (_, i) => `field${i}: objectId`).join('\n '); |
| 53 | return `{ users { edges { node { ${fields} } } } }`; |
| 54 | } |
| 55 | |
| 56 | afterEach(async () => { |
| 57 | if (httpServer) { |
no outgoing calls
no test coverage detected