Start a conversation

Deleting a Theme Quilt Template

To delete a reference of your theme to a quilt template, you should make a GraphQL deleteThemeQuiltScope mutation by providing the themeId and quiltId as arguments in your mutation.

Query


mutation deleteThemeQuiltScope($themeId: String!, $quiltId: String!){
    deleteThemeQuiltScope(themeId: $themeId, quiltId: $quiltId){
        result
        errors{
            __typename
            ... on PermissionDeniedError {
                message
                fields
            }
            ... on RequiredFieldNotSetError {
                message
                fields
            }
        }
    }
}

Variables


{
  "themeId": "myAwesomeTheme",
  "quiltId": "CategoryPage"
}
Choose files or drag and drop files
Was this article helpful?
Yes
No
  1. ATLAS

  2. Posted
  3. Updated

Comments