product.graphql 469 B

1234567891011121314151617181920212223
  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. }
  10. input CreateProductTranslation {
  11. languageCode: LanguageCode!
  12. name: String!
  13. slug: String
  14. description: String
  15. }
  16. input CreateProductInput {
  17. translations: [CreateProductTranslation]!
  18. image: String
  19. variants: [CreateProductVariantInput]
  20. optionGroupCodes: [String]
  21. }