You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
657 B

6 years ago
6 years ago
6 years ago
  1. mutation ($content: String!, $description: String!, $editor: String!, $isPrivate: Boolean!, $isPublished: Boolean!, $locale: String!, $path: String!, $publishEndDate: Date, $publishStartDate: Date, $tags: [String]!, $title: String!) {
  2. pages {
  3. create(content: $content, description: $description, editor: $editor, isPrivate: $isPrivate, isPublished: $isPublished, locale: $locale, path: $path, publishEndDate: $publishEndDate, publishStartDate: $publishStartDate, tags: $tags, title: $title) {
  4. responseResult {
  5. succeeded
  6. errorCode
  7. slug
  8. message
  9. }
  10. page {
  11. id
  12. updatedAt
  13. }
  14. }
  15. }
  16. }