Biomarkers

User query biomarkers to retrieve a list of all biomarkers created by you using the addBiomarker mutation.

Available Arguments

ArgumentTypeDescription

first

Int

Retrieves the first results from the list.

after

String

before

String

filters

BiomarkerFilterInput

filters.categoryId

ID

Id of Category.

filters.name

String

Name of Biomarker.

id

ID

Id of the biomarker.

last

Int

Available Fields

Field NameTypeDescription

id

ID

Id of the biomarker.

name

String

Name of biomarker.

description

String

Biomarker Description.

method

String

BIomarker method definition.

createdAt

datetime

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

updatedAt

datetime

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

category

BiomarkerCategory

category.name

String

Biomarker catalog category name.

range

range

Biomarker range indicator.

range.min

Float

Smallest defined value.

range.max

Float

Largest defined value.

optimalRange

optimalRange

optimalRange.min

Float

Smallest defined value to be considered as optimal.

optimalRange.max

Float

Largest defined value to be considered as optimal.

aliases

BiomarkerAliases

aliases.name

String

Alias name.

aliases.laguage

String

Language of the alias.

units

BiomarkerUnit

units.name

String

Name of unit.

units.factor

Float

Biomarker unit numeric value.

Example

query {
  biomarkers {
    edges {
      node {
        id 
        name 
        description 
        method 
        createdAt 
        updatedAt
        category { name } 
        range { min max } 
        optimalRange { min max }
        aliases { name language }
       	units { name factor } 
      }
    }
  }
}

Last updated