( requestCaching: boolean )
| 1029 | * @category requests & batching |
| 1030 | */ |
| 1031 | export const setRequestCaching: (requestCaching: boolean) => Layer<never> = ( |
| 1032 | requestCaching: boolean |
| 1033 | ) => |
| 1034 | scopedDiscard( |
| 1035 | fiberRuntime.fiberRefLocallyScoped(query.currentCacheEnabled, requestCaching) |
| 1036 | ) |
| 1037 | |
| 1038 | /** |
| 1039 | * @since 2.0.0 |
nothing calls this directly
no test coverage detected
searching dependent graphs…