---
title: >-
  multipassIdentifier field added to GraphQL Admin API - 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/multipassidentifier-field-added-to-graphql-admin-api
  md: >-
    https://shopify.dev/changelog/multipassidentifier-field-added-to-graphql-admin-api.md
metadata:
  effectiveApiVersion: 2025-10
  affectedApi:
    - displayName: Admin GraphQL API
      handle: admin-graphql
  primaryTag:
    displayName: API
    handle: api
  secondaryTag:
    displayName: New
    handle: new
  indicatesActionRequired: false
  createdAt: '2025-04-23T16:12:06-04:00'
  postedAt: '2025-10-01T12:00:00-04:00'
  updatedAt: '2025-06-20T10:27:12-04:00'
  effectiveAt: '2025-07-01T12:00:00-04:00'
---

October 1, 2025

Tags:

* Admin GraphQL API
* 2025-10

# `multipassIdentifier` field added to GraphQL Admin API

We have introduced the `multipassIdentifier` field to the Admin GraphQL API, achieving feature parity with the REST Admin API. This update ensures that both APIs offer the same capabilities, enhancing consistency and flexibility for developers.

The `multipassIdentifier` field allows you to assign unique identifiers to customers, facilitating seamless authentication between your external website and Shopify store through the Multipass feature.

You can now utilize this field in both the `customerCreate` and `customerUpdate` mutations:

```graphql
mutation {
  customerUpdate(input: {
    id: "gid://shopify/Customer/12345678",
    multipass_identifier: "your-multipass-identifier-value"
  }) {
    customer {
      id
      multipassIdentifier
    }
    userErrors {
      field
      message
    }
  }
}
```

For further details on working with customers in the Admin GraphQL API, please refer to our [Customer documentation](https://shopify.dev/docs/api/admin-graphql/current/mutations/customerUpdate)
