@nosto/preact
    Preparing search index...

    Interface ShopifyProduct

    Shopify product data structure from handle.js endpoint.

    interface ShopifyProduct {
        available: boolean;
        compare_at_price: null | number;
        compare_at_price_max: number;
        compare_at_price_min: number;
        compare_at_price_varies: boolean;
        created_at: string;
        description: string;
        featured_image: string;
        handle: string;
        id: number;
        images: string[];
        options: ShopifyOption[];
        price: number;
        price_max: number;
        price_min: number;
        price_varies: boolean;
        published_at: string;
        tags: string[];
        title: string;
        type: string;
        url: string;
        variants: ShopifyVariant[];
        vendor: string;
    }
    Index

    Properties

    available: boolean
    compare_at_price: null | number
    compare_at_price_max: number
    compare_at_price_min: number
    compare_at_price_varies: boolean
    created_at: string
    description: string
    featured_image: string
    handle: string
    id: number
    images: string[]
    options: ShopifyOption[]
    price: number
    price_max: number
    price_min: number
    price_varies: boolean
    published_at: string
    tags: string[]
    title: string
    type: string
    url: string
    variants: ShopifyVariant[]
    vendor: string