UNPKG

portal-www

Version:

Nova Portal Website. Based on Next starter by Ueno

33 lines (31 loc) 579 B
import gql from 'graphql-tag'; export const PRODUCTS = gql` query Products($input: ProductsInput) { products(input: $input) { products { name vendor productType category description variants { id name ... on Variant { id price name sku requires type category forSale imageUrl isOnlyForNovaCustomers monthlyCharge } } } } } `;