product.graphql 219 B

1234567891011
  1. type Product {
  2. id: Int
  3. name: String
  4. slug: String
  5. description: String
  6. image: String
  7. variants: [ProductVariant]
  8. optionGroups: [ProductOptionGroup]
  9. createdAt: String
  10. updatedAt: String
  11. }