UNPKG

usimple-saleor-sdk

Version:

This package contains all queries and mutations that are used in our sample storefront. It can be used for semi-custom or fully-custom (with ability to extend existing queries) storefront solutions.

25 lines (24 loc) 558 B
export interface CollectionDetails_backgroundImage { __typename: "Image"; /** * Alt text for an image. */ alt: string | null; /** * The URL of the image. */ url: string; } export interface CollectionDetails { __typename: "Collection"; /** * The ID of the object. */ id: string; name: string; slug: string; seoDescription: string | null; seoTitle: string | null; backgroundImage: CollectionDetails_backgroundImage | null; description: any | null; }