updateKnowledgeDatabaseArticleFromText
Update an existing text-based article in the Knowledge Database. Only the provided fields will be updated. Note that some article fields are immutable.
Arguments
Input fields for updating a text-based Knowledge Database article.
Returns
UpdateKnowledgeDatabaseArticleFromTextUpdate an existing text-based article in the Knowledge Database. Only the provided fields will be updated. Note that some article fields are immutable.
Examples
The example data in the variables and responses below are autogenerated values designed to resemble real inputs. They do not represent actual customer data, and in some cases may require additional validation.
mutation UpdateKnowledgeDatabaseArticleFromText($input: UpdateKnowledgeDatabaseArticleFromTextInput!) {
updateKnowledgeDatabaseArticleFromText(input: $input) {
articleId
}
}
Variables
{
"input": UpdateKnowledgeDatabaseArticleFromTextInput
}
Response
{
"data": {
"updateKnowledgeDatabaseArticleFromText": {
"articleId": 74286157
}
}
}