| 1234567891011121314151617181920212223242526 |
- import { SingleProductResponse } from "@/components/catalog/type";
- import { GET_PRODUCT_SWATCH_REVIEW } from "@/graphql";
- import { cachedProductRequest } from "@/utils/hooks/useCache";
- export async function getProductWithSwatchAndReview(urlKey: string) {
- try {
- const {data:dataById} = await cachedProductRequest<SingleProductResponse>(
- // urlKey,
- GET_PRODUCT_SWATCH_REVIEW,
- { urlKey: urlKey }
- );
- return dataById?.product || null;
- } catch (error) {
- if (error instanceof Error) {
- console.error("Error fetching product:", {
- message: error.message,
- urlKey,
- graphQLErrors: (error as unknown as Record<string, unknown>)
- .graphQLErrors,
- });
- }
- return null;
- }
- }
|