()
| 73 | } |
| 74 | |
| 75 | const findAllMethodCalls = () => |
| 76 | root |
| 77 | // First, we need to find all method calls. |
| 78 | .find(jscodeshift.CallExpression, { |
| 79 | callee: { |
| 80 | type: jscodeshift.MemberExpression.name, |
| 81 | property: { |
| 82 | type: jscodeshift.Identifier.name, |
| 83 | }, |
| 84 | }, |
| 85 | }) |
| 86 | |
| 87 | const findQueryClientIdentifiers = (importIdentifiers) => |
| 88 | root |
nothing calls this directly
no test coverage detected
searching dependent graphs…