Closed bdunogier closed 5 years ago
Adds support for creating, updating and deleting content over GraphQL.
For each content type:
create{ContentType}
createBlogPost
createImage
update{ContentType}
updatePlace
updateVideo
updateArticleInput
createImageInput
Usage:
mutation CreateMyBlogPost { createBlogPost( parentLocationId: 216, input: { title: "The post's title", author: [ {name: "Bertrand Dunogier", email: "noemail@ez.no"} ], body: { format: html, input: "<h1>title</h1><p>paragraph</p>" } } ) { _info { id mainLocationId } title body { html5 } } }
Moved to https://github.com/ezsystems/ezplatform-graphql/pull/4.
Adds support for creating, updating and deleting content over GraphQL.
For each content type:
create{ContentType}
(createBlogPost
,createImage
, ...) andupdate{ContentType}
(updatePlace
,updateVideo
, ...)updateArticleInput
,createImageInput
Usage: