Content Categories
Query content library articles
Use the contentCategories
query to retrieve a list of content categories.
Available Arguments
Available Fields
Example with Category Filter
query{contentCategories(first:1 tags:["faqs"]){
edges{node{
name
id
lang
image
subcategories{
name
id
}
tags{
name
id
}
}}
}}
{
"data": {
"contentCategories": {
"edges": [
{
"node": {
"name": "Account",
"id": "Q29udGVudENhdGVnb3J5OjcyZjE5ZGM0LTM4MTktNDMyOC1iZWQ3LWE2NTI5MTcxNDBhNw==",
"lang": "{\"es\": {\"name\": \"Cuenta\"}}",
"image": null,
"subcategories": [],
"tags": [
{
"name": "faqs",
"id": "Q29udGVodFRhZzo0ZDAyOTIxOC1kYWJjLTQxNmEtYWExNS02MWFmMGJhZTViZGM="
}
]
}
}
]
}
}
}