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