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"
}
ATLAS
Comments