export const PRODUCT_FRAGMENT = gql` fragment Product on ProductType { uuid name price quantity rating slug description brand { smallLogo uuid name } category { name slug uuid } images { edges { node { image } } } attributeGroups { edges { node { name uuid attributes { name uuid values { value uuid } } } } } feedbacks { edges { node { uuid rating } } } tags { edges { node { tagName name } } } } `