import { FEEDBACK_FRAGMENT } from '@graphql/fragments/feedback.fragment'; export const MANAGE_FEEDBACK = gql` mutation addFeedback( $action: String!, $comment: String, $orderProductUuid: UUID!, $rating: Int ) { feedbackProductAction( action: $action, comment: $comment, orderProductUuid: $orderProductUuid, rating: $rating ) { feedback { ...Feedback } } } ${FEEDBACK_FRAGMENT} `;