Admin GraphQL API Subscription feature

We are exploring the GraphQL Admin API and observed that the GraphQL schema is not configured with subscriptions.
Could you please help us by enabling the subscription feature for the GraphQL API?

Error thrown from the API while using the subscriptions is as below: -

Request: -

subscription {
customerCreate {
customer {
id
firstName
lastName
email
phone
}
}
}

Response: -

{
“errors”: [
{
“message”: “Schema is not configured for subscriptions”,
“locations”: [
{
“line”: 1,
“column”: 1
}
],
“path”: [
“subscription”
],
“extensions”: {
“code”: “missingSubscriptionConfiguration”
}
}
]
}

Hi @osf_team_store

The GraphQL Admin API has a mutation that can be used to create webhook subscriptions, to topics like CUSTOMER_CREATE.

I am not aware of any plans to add subscriptions to the list of supported GraphQL Admin API types, but if you can share some more details about your use case I can submit a feature request on your behalf.

I’m not sure if I understand correctly, but isn’t that what this document is for?
https://shopify.dev/docs/api/admin-graphql/2023-07/objects/subscriptioncontract#fields