| 308 | }); |
| 309 | |
| 310 | const executeQuery: CreateQueryExecute = opts => { |
| 311 | const request = createRequest(args.query, getVariables() as any); |
| 312 | const context: Partial<OperationContext> = { |
| 313 | requestPolicy: getRequestPolicy(), |
| 314 | ...getContext(), |
| 315 | ...opts, |
| 316 | }; |
| 317 | |
| 318 | setSource(() => client.executeQuery(request, context)); |
| 319 | if (isSuspense()) { |
| 320 | refetch(); |
| 321 | } |
| 322 | }; |
| 323 | |
| 324 | const handler = { |
| 325 | get( |
nothing calls this directly
no test coverage detected
searching dependent graphs…