useApolloClient

OwlSuri·2022년 4월 14일
0

useQuery

요청 : 자동
그림 : 자동

useLazyQuery

요청 : 수동
그림 : 자동
실행만 내가 원하는 곳에서 할 수 있음

useApolloClient

요청 : 수동
그림 : 수동
axios와 비슷
자동으로 그려주지 않음
받아오는 것 까지.

const client = useApolloClient() ← 이걸 Axios라고 보면 된다

const result = await client.query({
   query:FETCH_USER_LOGGED_IN,

   context:{

headers:{

authorization:`Bearer ${result.data?.loginUser.accessToken}`

}

}

})

setUserInfo(result.data.fetchUserLoggedIn) 
//글로벌 스테이트에 담기
profile
기억이 안되면, 기록을 -

0개의 댓글