fragments.graphql.ts 355 B

12345678910111213141516171819
  1. import gql from 'graphql-tag';
  2. export const PRODUCT_REVIEW_FRAGMENT = gql`
  3. fragment ProductReview on ProductReview {
  4. id
  5. createdAt
  6. updatedAt
  7. authorName
  8. authorLocation
  9. summary
  10. body
  11. rating
  12. state
  13. upvotes
  14. downvotes
  15. response
  16. responseCreatedAt
  17. }
  18. `;