Hello. I have to clear all likes (relation), how c...
# prisma-whats-new
m
Hello. I have to clear all likes (relation), how can I do it? Will this code correct?
Copy code
mutation {
  removeFromUserLikes(likesPostId: "*") {
    likedUsersUser {
      id
    }
  }
}