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