Cache data may be lost when replacing the my field of a Query object
问题 this my code const NewVerificationCode = () => { const { loading, error, data = {}, refetch } = useQuery(CONFIRMATION_CODE, { skip: true, onError: (err) => {}, }); console.log(loading, error, data); if (loading || error) { return <ErrorLoadingHandler {...{ loading, error }} />; } return ( <form onSubmit={(e) => { refetch(); e.preventDefault(); }} > <div> <button type="submit" className="signUpbutton"> {"Send the message again"} </button> </div> </form> ); }; const CONFIRMATION_CODE = gql`