query

faqsByCategory

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
faqs
[FAQ]
Detailed list of FAQs.
Query
1query faqsByCategory($slug: String!) {
2 faqsByCategory(slug: $slug) {
3 faqs {
4 id
5 answer
6 application
7 question
8 slug
9 tags
10 }
11 }
12}
Try it
Input Variables
1{
2 "slug": "slug"
3}
Response
1{
2 "faqsByCategory": {
3 "faqs": [
4 {
5 "id": "08a16b83-9094-4e89-8c05-2ccadd5c1c7e",
6 "answer": "answer",
7 "application": "application",
8 "question": "question",
9 "slug": "slug",
10 "tags": [
11 "tags"
12 ]
13 }
14 ]
15 }
16}