Content Categories

Query content library articles

Use the contentCategories query to retrieve a list of content categories.

Available Arguments

Arguments

Type

Description

after

String

before

String

first

Int

id

ID

Id of caregory.

last

Int

tags

[String]

Content tags.

Available Fields

Field

Type

Description

categories

[contentCategories]

List of categories.

Example with Category Filter

query{contentCategories(first:1 tags:["faqs"]){
  edges{node{
    name
    id
    lang
    image
    subcategories{
      name
      id
    }
    tags{
      name
      id
    }
  }}
}}

Last updated