### Describe the bug ` queryClient.invalidateQueries(queryKey, { refetchInactive: true, }) ` also refetches disabled queries (`enabled`: false) but - https://github.com/tannerlinsley/react-query/issues/947#issuecomment-1005020047 looks like this issue was introduce in this commit - https://github.com/tannerlinsley/react-query/pull/949/commits/f5ae636e2ba697d56e1789d731e5d382f7b444bd ### Your minimal, reproducible example https://codesandbox.io/s/quiet-dust-hegny?file=/src/App.js ### Steps to reproduce 1. Create a query with `useQuery` and set `enabled` option to false. 2. Invalidate this query with `invalidateQueries` and set `refetchInactive` to true ### Expected behavior I expected that disabled queries (`enabled: false`) would not refetch when I use `invalidateQueries` ### Platform - OS: macOs - Browser: Not related ### react-query version v3.34.8 ### TypeScript version v4.2.2