
넥스트 프로젝트 되어서는 런캣의 고양이가 진짜 매일매일 열심히 뛴다... 얼마나 빠르게 뛰려고... 라는 생각밖에 없다...

타입 이슈, 리액트쿼리 invalidateQueries 매서드 v4 이슈
const addMutation = useMutation({
mutationFn:
(newComment: {
user_id: null;
nickname: null;
pokemon_id: string;
comment: string;
}) => addComment(newComment),
onSuccess: () => {
queryClient.invalidateQueries({ queryKey: ["Allcomments", id] });
alert("댓글 작성이 완료되었습니다.");
setComment("");
},
});
탄스택쿼리 invalidateQueries 매서드 공식 문서
해당 매서드에 queryKey 넣어주니 작동 완료
CR 완료
userId 받아오는 대로 ud도 이어서 하기 + 라우트 핸들러 찾아보기
꺅 검은냥이 !!