updateStorePage #
updateStorePage(pageId: String, params: UpdateStorePageParams) StorePage
Example #
mutation updateStorePage($pageId: String!, $params: UpdateStorePageParams!){
  updateStorePage(pageId: $pageId, params: $params) {
    id
    title
    slug
    content
    isPublished
    views
    createdAt
    updatedAt
  }
}