--- title: catalogDelete - GraphQL Admin description: Delete a catalog. api_version: 2025-10 api_name: admin type: mutation api_type: graphql source_url: html: https://shopify.dev/docs/api/admin-graphql/latest/mutations/catalogdelete md: https://shopify.dev/docs/api/admin-graphql/latest/mutations/catalogdelete.md --- # catalog​Delete mutation Requires `write_products` access scope. Also: The user must have permission to delete catalogs. Delete a catalog. ## Arguments * delete​Dependent​Resources [Boolean](https://shopify.dev/docs/api/admin-graphql/latest/scalars/Boolean) Default:false Whether to also delete the price list and the publication owned by the catalog. * id [ID!](https://shopify.dev/docs/api/admin-graphql/latest/scalars/ID) required The ID of the catalog to delete. *** ## Catalog​Delete​Payload returns * deleted​Id [ID](https://shopify.dev/docs/api/admin-graphql/latest/scalars/ID) The ID of the deleted catalog. * user​Errors [\[Catalog​User​Error!\]!](https://shopify.dev/docs/api/admin-graphql/latest/objects/CatalogUserError) non-null The list of errors that occurred from executing the mutation. *** ## Examples * ### catalogDelete reference ## Mutation Reference ```graphql mutation catalogDelete($id: ID!, $deleteDependentResources: Boolean) { catalogDelete(id: $id, deleteDependentResources: $deleteDependentResources) { deletedId userErrors { field message } } } ``` ## Input ```json { "id": "gid://shopify//10079785100", "deleteDependentResources": true } ``` ##### Variables ``` { "id": "gid://shopify//10079785100", "deleteDependentResources": true } ```