Skip to main content

Order

注文情報

type Order {
id: String!
createdAt: DateTime!
updatedAt: DateTime!
paidAt: DateTime!
cancelledAt: DateTime
amount: Float!
currencyCode: String!
test: Boolean!
paymentGatewayNames: [String]
fullFillments: [Fulfillment]
}

Fields

Order.id ● String! non-null scalar

注文情報ID

  • 説明: 注文情報の globally-unique ID
  • 例: "gid://shopify/Order/1234567890"

Order.createdAt ● DateTime! non-null scalar

注文作成日時

  • 例: "2025-01-21T14:00:00+09:00"
  • 備考: JST

Order.updatedAt ● DateTime! non-null scalar

注文更新日時

  • 例: "2025-01-21T14:00:00+09:00"
  • 備考: JST

Order.paidAt ● DateTime! non-null scalar

注文の支払い完了日時

  • 例: "2025-01-21T14:00:00+09:00"
  • 備考: JST

Order.cancelledAt ● DateTime scalar

注文キャンセル日時

  • 例: "2025-01-21T14:00:00+09:00"
  • 備考:
    JST
    null の場合、キャンセルされていない

Order.amount ● Float! non-null scalar

注文の合計金額

  • 例: 5000

Order.currencyCode ● String! non-null scalar

注文の通貨

  • 例: "JPY"

Order.test ● Boolean! non-null scalar

テスト注文フラグ

  • true: テスト注文
  • false: 本番注文

Order.paymentGatewayNames ● [String] list scalar

決済方法

  • 説明: 注文に使用された支払い方法名
  • 例: ["shopify_payments"]

Order.fullFillments ● [Fulfillment] list object

フルフィルメント情報

  • 説明: フルフィルメント情報

Example

{
"id": "gid://shopify/Order/1234567890",
"createdAt": "2025-01-21T14:00:00+09:00",
"updatedAt": "2025-01-21T14:00:00+09:00",
"paidAt": "2025-01-21T14:00:00+09:00",
"cancelledAt": null,
"amount": 5000,
"currencyCode": "JPY",
"test": false,
"paymentGatewayNames": [
"shopify_payments"
],
"fullFillments": []
}

Member Of

BillingAttempt object ● SubscriptionContract object