GitHub

ShopifyCartCompletionSuccess

interface

import { ShopifyCartCompletionSuccess } from '@daffodil/driver/shopify'

A successful completion to checkout a cart and a created order.

interface ShopifyCartCompletionSuccess {
  __typename: "CartCompletionSuccess"
  completedAt: Maybe<Scalars['DateTime']['output']>
  id: string
  orderId: string
  orderUrl: Scalars['URL']['output']
}

Properties

__typename
"CartCompletionSuccess"
completedAt
Maybe<Scalars['DateTime']['output']>

The date and time when the job completed.

id
string

The ID of the cart completion attempt.

orderId
string

The ID of the order that's created in Shopify.

orderUrl
Scalars['URL']['output']

The URL of the order confirmation in Shopify.