Biomarker Categories

Biomarker Categories

Use the biomarkerCategories query to return all available biomarker categories.

Available Arguments

ArgumentTypeDescription

first

Int

Retrieves the first results from the list.

after

String

before

String

Id

ID

Id of Biomarker category.

last

Int

parentId

ID

Id of parent category.

Available Fields

Field NameTypeDescription

id

ID

Id of Biomarker category.

name

String

Name of category.

order

Int

Sets view order, ascending. Default = 0.

createdAt

datetime

Use the format: YYYY-MM-DDT hh:mm:ssZ

updatedAt

datetime

Use the format: YYYY-MM-DDT hh:mm:ssZ

parent

parent

Parent category.

parent.id

ID

Id of parent category.

parent.name

String

Parent category name.

Example

query {
  biomarkerCategories(first: 2) {
    edges {
      node {
        id
        name
        order
        createdAt
        updatedAt
        parent { 
          id 
          name 
          }
      }
    }
  }
}

Last updated