I have a bulk operation to get orders using the GraphQL API. The documentation found at https://shopify.dev/api/usage/bulk-operations/queries#option-a-use-the-bulk_operations-finish-webhook-topic mentions two possible ways of retrieving the query results. One is polling, which I have working. The other is via the BULK_OPERATIONS_FINISH webhook. Now, I’ve been able to subscribe to other webhooks, CARTS_UPDATE or ORDERS_CREATE for example, but the BULK_OPERATIONS_FINISH topic is not found at https://shopify.dev/api/admin-graphql/2021-07/enums/WebhookSubscriptionTopic and when I try to subscribe I get this error:
"Expected "BULK_OPERATIONS_FINISH" to be one of: APP_UNINSTALLED, CARTS_CREATE, CARTS_UPDATE, CHANNELS_DELETE, CHECKOUTS_CREATE, … "
What’s going on here? Is the documentation out of date?