()
| 463 | |
| 464 | // Create query function context |
| 465 | const createQueryFnContext = (): QueryFunctionContext<TQueryKey> => { |
| 466 | const queryFnContext: OmitKeyof< |
| 467 | QueryFunctionContext<TQueryKey>, |
| 468 | 'signal' |
| 469 | > = { |
| 470 | client: this.#client, |
| 471 | queryKey: this.queryKey, |
| 472 | meta: this.meta, |
| 473 | } |
| 474 | addSignalProperty(queryFnContext) |
| 475 | return queryFnContext as QueryFunctionContext<TQueryKey> |
| 476 | } |
| 477 | |
| 478 | const queryFnContext = createQueryFnContext() |
| 479 |
nothing calls this directly
no test coverage detected