comprehensive-tomatoC
Refine3y ago
37 replies
comprehensive-tomato

refetch data

hi
to fetch data I use
  const { data, isLoading, isError } = queryResult;
// OR
  const {
    tableQueryResult: {data, isLoading, isError},
  } = useTable();


in case I did some changes and I want to refetch the data in same page (it will be the same if I call fetch function in normal framework) how I can do it ?
Was this page helpful?