import { ShopifyApiVersion } from '@daffodil/driver/shopify'
A version of the API, as defined by Shopify API versioning.
Versions are commonly referred to by their handle (for example, 2021-10).
interface ShopifyApiVersion {
__typename: "ApiVersion"
displayName: string
handle: string
supported: boolean
}
__typename "ApiVersion" |
|---|
displayName string |
|---|
The human-readable name of the version. |
handle string |
|---|
The unique identifier of an ApiVersion. All supported API versions have a date-based (YYYY-MM) or |
supported boolean |
|---|
Whether the version is actively supported by Shopify. Supported API versions are guaranteed to be stable. Unsupported API versions include unstable, release candidate, and end-of-life versions that are marked as unsupported. For more information, refer to Versioning. |