Reactjs – React Query is not refetching data on URL change
This is my simle React Query function for useQuery var { isPending, isError, data } = useQuery({ queryKey: ['ordersFetch'], queryFn: () => fetch(FETCH_ORDERS_API + pageNumber.order).then((res) => res.json()) }) I am changing the pageNumber.order by using the contextApi which results in…