@@ -42,8 +42,8 @@ const documents = {
4242 "\n query GetIsPayedOrder($id: ID) {\n order(idType: DATABASE_ID, id: $id) {\n transactionId\n datePaid\n }\n }\n" : types . GetIsPayedOrderDocument ,
4343 "\n query GetPage($slug: String) {\n pages(where: { name: $slug, status: PUBLISH }) {\n edges {\n node {\n title\n content\n }\n }\n }\n }\n" : types . GetPageDocument ,
4444 "\n query GetPublishedPagesList {\n pages(where: { status: PUBLISH }) {\n edges {\n node {\n title\n slug\n }\n }\n }\n }\n" : types . GetPublishedPagesListDocument ,
45- "\n query GetAllProducts(\n $stockStatus: [StockStatusEnum]\n $orderBy: [ProductsOrderbyInput]\n $categoryIdIn: [Int]\n $q: String\n $first: Int\n ) {\n products(\n first: $first\n where: {\n stockStatus: $stockStatus\n orderby: $orderBy\n categoryIdIn: $categoryIdIn\n search: $q\n }\n ) {\n pageInfo {\n total\n hasNextPage\n hasPreviousPage\n }\n nodes {\n __typename\n ... on VariableProduct {\n databaseId\n name\n onSale\n type\n averageRating\n slug\n image {\n sourceUrl\n }\n price\n regularPrice\n salePrice\n stockStatus\n discountAmount\n discountPercentage\n }\n }\n }\n }\n" : types . GetAllProductsDocument ,
46- "\n query GetSingleProduct($id: ID!) {\n product(id: $id, idType: DATABASE_ID) {\n description\n content\n commentCount\n image {\n id: databaseId\n sourceUrl\n altText\n }\n customAttributes {\n nodes {\n id\n label\n name\n optionNames\n variation\n }\n }\n productCategories(where: { order: ASC, orderby: TERM_ORDER }) {\n nodes {\n id: databaseId\n name\n slug\n menuOrder\n parentId\n }\n }\n galleryImages {\n nodes {\n id\n sourceUrl\n altText\n }\n }\n ... on VariableProduct {\n id: databaseId\n name\n title\n stockStatus\n slug\n averageRating\n price\n regularPrice\n salePrice\n discountPercentage\n discountAmount\n variations(where: { stockStatus: IN_STOCK }) {\n nodes {\n ...ProductVariationContentSlice\n }\n }\n }\n }\n }\n \n" : types . GetSingleProductDocument ,
45+ "\n query GetAllProducts(\n $stockStatus: [StockStatusEnum]\n $orderBy: [ProductsOrderbyInput]\n $categoryIdIn: [Int]\n $q: String\n $first: Int\n ) {\n products(\n first: $first\n where: {\n stockStatus: $stockStatus\n orderby: $orderBy\n categoryIdIn: $categoryIdIn\n search: $q\n }\n ) {\n pageInfo {\n total\n hasNextPage\n hasPreviousPage\n }\n nodes {\n __typename\n ... on VariableProduct {\n databaseId\n name\n onSale\n type\n averageRating\n slug\n image {\n sourceUrl(size: WOOCOMMERCE_SINGLE) \n }\n price\n regularPrice\n salePrice\n stockStatus\n discountAmount\n discountPercentage\n }\n }\n }\n }\n" : types . GetAllProductsDocument ,
46+ "\n query GetSingleProduct($id: ID!) {\n product(id: $id, idType: DATABASE_ID) {\n description\n content\n commentCount\n image {\n id: databaseId\n sourceUrl(size: WOOCOMMERCE_SINGLE)\n altText\n }\n globalAttributes {\n nodes {\n id\n label\n name\n optionNames\n variation\n }\n }\n productCategories(where: { order: ASC, orderby: TERM_ORDER }) {\n nodes {\n id: databaseId\n name\n slug\n menuOrder\n parentId\n }\n }\n galleryImages {\n nodes {\n id\n sourceUrl(size: WOOCOMMERCE_SINGLE)\n altText\n }\n }\n ... on VariableProduct {\n id: databaseId\n name\n title\n stockStatus\n slug\n averageRating\n price\n regularPrice\n salePrice\n discountPercentage\n discountAmount\n variations(where: { stockStatus: IN_STOCK }) {\n nodes {\n ...ProductVariationContentSlice\n }\n }\n }\n }\n }\n \n" : types . GetSingleProductDocument ,
4747 "\n query GetHomePageSliders {\n sliderCategories(where: { slug: \"MAIN_HOMEPAGE_SLIDERS\" }) {\n nodes {\n sliders {\n edges {\n node {\n id: databaseId\n title\n url\n featuredImage {\n node {\n id: databaseId\n url: sourceUrl\n }\n }\n }\n }\n }\n }\n }\n }\n" : types . GetHomePageSlidersDocument ,
4848 "\n query GetTopBanner {\n sliderCategories(where: { slug: \"TOP_BANNER\" }) {\n nodes {\n sliders {\n edges {\n node {\n id: databaseId\n title\n url\n featuredImage {\n node {\n id: databaseId\n url: sourceUrl\n }\n }\n }\n }\n }\n }\n }\n }\n" : types . GetTopBannerDocument ,
4949} ;
@@ -181,11 +181,11 @@ export function graphql(source: "\n query GetPublishedPagesList {\n pages(wh
181181/**
182182 * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
183183 */
184- export function graphql ( source : "\n query GetAllProducts(\n $stockStatus: [StockStatusEnum]\n $orderBy: [ProductsOrderbyInput]\n $categoryIdIn: [Int]\n $q: String\n $first: Int\n ) {\n products(\n first: $first\n where: {\n stockStatus: $stockStatus\n orderby: $orderBy\n categoryIdIn: $categoryIdIn\n search: $q\n }\n ) {\n pageInfo {\n total\n hasNextPage\n hasPreviousPage\n }\n nodes {\n __typename\n ... on VariableProduct {\n databaseId\n name\n onSale\n type\n averageRating\n slug\n image {\n sourceUrl\n }\n price\n regularPrice\n salePrice\n stockStatus\n discountAmount\n discountPercentage\n }\n }\n }\n }\n" ) : ( typeof documents ) [ "\n query GetAllProducts(\n $stockStatus: [StockStatusEnum]\n $orderBy: [ProductsOrderbyInput]\n $categoryIdIn: [Int]\n $q: String\n $first: Int\n ) {\n products(\n first: $first\n where: {\n stockStatus: $stockStatus\n orderby: $orderBy\n categoryIdIn: $categoryIdIn\n search: $q\n }\n ) {\n pageInfo {\n total\n hasNextPage\n hasPreviousPage\n }\n nodes {\n __typename\n ... on VariableProduct {\n databaseId\n name\n onSale\n type\n averageRating\n slug\n image {\n sourceUrl\n }\n price\n regularPrice\n salePrice\n stockStatus\n discountAmount\n discountPercentage\n }\n }\n }\n }\n" ] ;
184+ export function graphql ( source : "\n query GetAllProducts(\n $stockStatus: [StockStatusEnum]\n $orderBy: [ProductsOrderbyInput]\n $categoryIdIn: [Int]\n $q: String\n $first: Int\n ) {\n products(\n first: $first\n where: {\n stockStatus: $stockStatus\n orderby: $orderBy\n categoryIdIn: $categoryIdIn\n search: $q\n }\n ) {\n pageInfo {\n total\n hasNextPage\n hasPreviousPage\n }\n nodes {\n __typename\n ... on VariableProduct {\n databaseId\n name\n onSale\n type\n averageRating\n slug\n image {\n sourceUrl(size: WOOCOMMERCE_SINGLE)\n }\n price\n regularPrice\n salePrice\n stockStatus\n discountAmount\n discountPercentage\n }\n }\n }\n }\n" ) : ( typeof documents ) [ "\n query GetAllProducts(\n $stockStatus: [StockStatusEnum]\n $orderBy: [ProductsOrderbyInput]\n $categoryIdIn: [Int]\n $q: String\n $first: Int\n ) {\n products(\n first: $first\n where: {\n stockStatus: $stockStatus\n orderby: $orderBy\n categoryIdIn: $categoryIdIn\n search: $q\n }\n ) {\n pageInfo {\n total\n hasNextPage\n hasPreviousPage\n }\n nodes {\n __typename\n ... on VariableProduct {\n databaseId\n name\n onSale\n type\n averageRating\n slug\n image {\n sourceUrl(size: WOOCOMMERCE_SINGLE)\n }\n price\n regularPrice\n salePrice\n stockStatus\n discountAmount\n discountPercentage\n }\n }\n }\n }\n" ] ;
185185/**
186186 * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
187187 */
188- export function graphql ( source : "\n query GetSingleProduct($id: ID!) {\n product(id: $id, idType: DATABASE_ID) {\n description\n content\n commentCount\n image {\n id: databaseId\n sourceUrl\n altText\n }\n customAttributes {\n nodes {\n id\n label\n name\n optionNames\n variation\n }\n }\n productCategories(where: { order: ASC, orderby: TERM_ORDER }) {\n nodes {\n id: databaseId\n name\n slug\n menuOrder\n parentId\n }\n }\n galleryImages {\n nodes {\n id\n sourceUrl\n altText\n }\n }\n ... on VariableProduct {\n id: databaseId\n name\n title\n stockStatus\n slug\n averageRating\n price\n regularPrice\n salePrice\n discountPercentage\n discountAmount\n variations(where: { stockStatus: IN_STOCK }) {\n nodes {\n ...ProductVariationContentSlice\n }\n }\n }\n }\n }\n \n" ) : ( typeof documents ) [ "\n query GetSingleProduct($id: ID!) {\n product(id: $id, idType: DATABASE_ID) {\n description\n content\n commentCount\n image {\n id: databaseId\n sourceUrl\n altText\n }\n customAttributes {\n nodes {\n id\n label\n name\n optionNames\n variation\n }\n }\n productCategories(where: { order: ASC, orderby: TERM_ORDER }) {\n nodes {\n id: databaseId\n name\n slug\n menuOrder\n parentId\n }\n }\n galleryImages {\n nodes {\n id\n sourceUrl\n altText\n }\n }\n ... on VariableProduct {\n id: databaseId\n name\n title\n stockStatus\n slug\n averageRating\n price\n regularPrice\n salePrice\n discountPercentage\n discountAmount\n variations(where: { stockStatus: IN_STOCK }) {\n nodes {\n ...ProductVariationContentSlice\n }\n }\n }\n }\n }\n \n" ] ;
188+ export function graphql ( source : "\n query GetSingleProduct($id: ID!) {\n product(id: $id, idType: DATABASE_ID) {\n description\n content\n commentCount\n image {\n id: databaseId\n sourceUrl(size: WOOCOMMERCE_SINGLE)\n altText\n }\n globalAttributes {\n nodes {\n id\n label\n name\n optionNames\n variation\n }\n }\n productCategories(where: { order: ASC, orderby: TERM_ORDER }) {\n nodes {\n id: databaseId\n name\n slug\n menuOrder\n parentId\n }\n }\n galleryImages {\n nodes {\n id\n sourceUrl(size: WOOCOMMERCE_SINGLE)\n altText\n }\n }\n ... on VariableProduct {\n id: databaseId\n name\n title\n stockStatus\n slug\n averageRating\n price\n regularPrice\n salePrice\n discountPercentage\n discountAmount\n variations(where: { stockStatus: IN_STOCK }) {\n nodes {\n ...ProductVariationContentSlice\n }\n }\n }\n }\n }\n \n" ) : ( typeof documents ) [ "\n query GetSingleProduct($id: ID!) {\n product(id: $id, idType: DATABASE_ID) {\n description\n content\n commentCount\n image {\n id: databaseId\n sourceUrl(size: WOOCOMMERCE_SINGLE)\n altText\n }\n globalAttributes {\n nodes {\n id\n label\n name\n optionNames\n variation\n }\n }\n productCategories(where: { order: ASC, orderby: TERM_ORDER }) {\n nodes {\n id: databaseId\n name\n slug\n menuOrder\n parentId\n }\n }\n galleryImages {\n nodes {\n id\n sourceUrl(size: WOOCOMMERCE_SINGLE)\n altText\n }\n }\n ... on VariableProduct {\n id: databaseId\n name\n title\n stockStatus\n slug\n averageRating\n price\n regularPrice\n salePrice\n discountPercentage\n discountAmount\n variations(where: { stockStatus: IN_STOCK }) {\n nodes {\n ...ProductVariationContentSlice\n }\n }\n }\n }\n }\n \n" ] ;
189189/**
190190 * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
191191 */
0 commit comments