---
title: >-
  GiftCardCashOutTransaction is now resolvable from GiftCardTransaction -
  Shopify developer changelog
description: >-
  Shopify’s developer changelog documents all changes to Shopify’s platform.
  Find the latest news and learn about new platform opportunities.
source_url:
  html: >-
    https://shopify.dev/changelog/giftcardcashouttransaction-now-resolvable-from-giftcardtransaction
  md: >-
    https://shopify.dev/changelog/giftcardcashouttransaction-now-resolvable-from-giftcardtransaction.md
metadata:
  effectiveApiVersion: 2026-07
  affectedApi:
    - displayName: Admin GraphQL API
      handle: admin-graphql
  primaryTag:
    displayName: API
    handle: api
  secondaryTag:
    displayName: New
    handle: new
  indicatesActionRequired: false
  createdAt: '2026-05-27T19:02:58-04:00'
  postedAt: '2026-06-05T12:00:00-04:00'
  updatedAt: '2026-06-02T09:41:56-04:00'
  effectiveAt: '2026-06-02T12:00:00-04:00'
---

June 5, 2026

Tags:

* Admin GraphQL API
* 2026-07

# `GiftCardCashOutTransaction` is now resolvable from `GiftCardTransaction`

Starting with GraphQL Admin API version 2026-07, the \[`GiftCardCashOutTransaction`]\(<https://shopify.dev/docs/api/admin-graphql/2026-07/objects/GiftCardCashOutTransaction> type is introduced as a new variant of the `GiftCardTransaction` interface. This type specifically represents transactions where a gift card balance is paid out through a point of sale (POS) system.

In previous API versions, such as 2026-04 and earlier, these transactions were classified as `GiftCardDebitTransaction`. From version 2026-07 onwards, they are identified as `GiftCardCashOutTransaction`. To accurately differentiate cash-out transactions from credit and debit transactions, use the `__typename` field when querying `giftCard.transactions`.

Below is an example query:

```graphql
giftCard(id: "...") {
  transactions(first: 10) {
    nodes {
      __typename
      ... on GiftCardCashOutTransaction {
        id
        amount { amount currencyCode }
      }
    }
  }
}
```
