Added new HTML editor with some breaking changes.

This commit is contained in:
Patrick Fic
2020-08-14 15:50:36 -07:00
parent 57cbc6961c
commit 873e81556d
20 changed files with 574 additions and 358 deletions

View File

@@ -4,9 +4,9 @@ export const QUERY_TEMPLATES_BY_NAME = gql`
query QUERY_TEMPLATES_BY_NAME($name: String!) {
templates(where: { name: { _eq: $name } }) {
id
html
name
query
html
bodyshopid
}
}
@@ -28,6 +28,7 @@ export const QUERY_TEMPLATE_BY_PK = gql`
name
query
html
jsontemplate
}
}
`;