()
| 192 | const mutationKey = ['mutation'] |
| 193 | |
| 194 | function Variables() { |
| 195 | variables.push( |
| 196 | useMutationState({ |
| 197 | filters: { mutationKey, status: 'pending' }, |
| 198 | select: (mutation) => mutation.state.variables, |
| 199 | }), |
| 200 | ) |
| 201 | |
| 202 | return null |
| 203 | } |
| 204 | |
| 205 | function Mutate() { |
| 206 | const { mutate, data } = useMutation({ |
nothing calls this directly
no test coverage detected
searching dependent graphs…