wikijs-fork/client/graph/editor/create.gql

17 lines
657 B
Plaintext
Raw Normal View History

mutation ($content: String!, $description: String!, $editor: String!, $isPrivate: Boolean!, $isPublished: Boolean!, $locale: String!, $path: String!, $publishEndDate: Date, $publishStartDate: Date, $tags: [String]!, $title: String!) {
2018-07-22 04:29:39 +00:00
pages {
create(content: $content, description: $description, editor: $editor, isPrivate: $isPrivate, isPublished: $isPublished, locale: $locale, path: $path, publishEndDate: $publishEndDate, publishStartDate: $publishStartDate, tags: $tags, title: $title) {
2018-07-22 04:29:39 +00:00
responseResult {
succeeded
errorCode
slug
message
}
page {
id
2020-03-21 23:18:08 +00:00
updatedAt
2018-07-22 04:29:39 +00:00
}
}
}
}