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.
36 lines (35 loc) • 872 B
TypeScript
export interface CollectionDetails_collection_backgroundImage {
__typename: "Image";
/**
* Alt text for an image.
*/
alt: string | null;
/**
* The URL of the image.
*/
url: string;
}
export interface CollectionDetails_collection {
__typename: "Collection";
/**
* The ID of the object.
*/
id: string;
name: string;
slug: string;
seoDescription: string | null;
seoTitle: string | null;
backgroundImage: CollectionDetails_collection_backgroundImage | null;
description: any | null;
}
export interface CollectionDetails {
/**
* Look up a collection by ID.
*/
collection: CollectionDetails_collection | null;
}
export interface CollectionDetailsVariables {
id?: string | null;
slug?: string | null;
channel?: string | null;
}