Biomarker Units

Use the biomarkerUnits query to retrieve all available units.

Available Arguments

ArgumentTypeDescription

first

Int

Retrieves the first results from the list.

last

Int

after

String

before

String

id

ID

Id of the biomarker unit.

Available Fields

Field NameTypeDescription

id

ID

Id of the biomarker unit.

name

String

Name of biomarker unit.

alias

String

Alternative biomarker name.

factor

Float

Biomarker unit numeric value.

createdAt

datetime

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

updatedAt

datetime

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

Example

query {
  biomarkerUnits(first: 2) {
    edges {
      node {
        id
        name
        alias
        factor
        createdAt
        updatedAt
      }
    }
  }
}

Last updated