Biomarker Catalog

Reference list of biomarker definitions

Use biomarkerCatalog to retrieve a referential list of biomarker definitions available in the Suggestic Biomarker Catalog.

Please note that the catalog is for references purpose only. You'll need to create your biomarker definitions using the addBiomarker mutation to start using this functionality. Alternatively, you can request we clone some or the totality of biomarkers from the catalog into your account.

Available Arguments

ArgumentTypeDescription

first

String

Retrieves the first results from the list.

after

String

before

String

id

ID

Id of Catalog.

last

Int

filters

BiomarkerFilterInput

filters.categoryId

ID

Id of Category.

filters.name

String

Name of Biomarker.

Available Fields

Field NameTypeDescription

id

ID

Id of 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

BiomarkerAlias

Biomarker Catalog alternative names.

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 {
  biomarkerCatalog(first: 2) {
    edges {
      node {
        id 
        name 
        description 
        method 
        createdAt 
        updatedAt
        category { 
          name 
          } 
        range { 
          min 
          max
           } 
        optimalRange { 
          min 
          max 
          }
        aliases { 
          name 
          language 
          }
       	units { 
          name 
          factor 
          } 
      }
    }
  }
}

Last updated