Skip to main content

helpArticle Query

Description

Retrieves a help article by its unique identifier.

query helpArticle($id: String!) {
helpArticle(id: $id) {
id
description
body
title
url
}
}

Variables

{
"id": "08a16b83-9094-4e89-8c05-2ccadd5c1c7e"
}

Response

{
"helpArticle": {
"id": "example",
"description": "example",
"body": "example",
"title": "example",
"url": "https://example.com"
}
}

Arguments

NameTypeDescription
idString!Unique identifier of the help article to retrieve.

Returns

HelpArticle