query

faqCategory

List categories for organizing FAQs.
Arguments
Required
A short, human-readable, URL-friendly identifier of an FAQ category. You can get slug value from the endpoint /service/application/content/v1.0/faq/categories.
Response
Unique identifier of an entry.
application
String
Application ID - Identifier for a Sales channel.
Details regarding a FAQs stored under a FAQs category.
description
String
Details of the FAQ category.
icon_url
String
URL of the image associated with FAQ Category.
index
Int
Order of FAQ Category.
slug
String
A short, human-readable, URL-friendly identifier.
title
String
Title of a FAQ Category.
custom_json
JSON
Custom JSON object for specific use cases.
Query
1query faqCategory($slug: String!) {
2 faqCategory(slug: $slug) {
3 id
4 application
5 children {
6 id
7 answer
8 application
9 question
10 slug
11 }
12 description
13 icon_url
14 index
15 slug
16 title
17 custom_json
18 }
19}
Try it
Input Variables
1{
2 "slug": "slug"
3}
Response
1{
2 "faqCategory": {
3 "id": "08a16b83-9094-4e89-8c05-2ccadd5c1c7e",
4 "application": "application",
5 "children": [
6 {
7 "id": "08a16b83-9094-4e89-8c05-2ccadd5c1c7e",
8 "answer": "answer",
9 "application": "application",
10 "question": "question",
11 "slug": "slug"
12 }
13 ],
14 "description": "A description",
15 "icon_url": "icon_url",
16 "index": 42,
17 "slug": "slug",
18 "title": "title",
19 "custom_json": {}
20 }
21}