Historical Biomarker Results

User historicalBiomarkerResults to retrieve all of the user's historical lab results for all biomarkers.

Available Arguments

ArgumentTypeDescription

first

Int

Retrieves the first results from the list.

after

String

before

String

last

Int

filters

BiomarkerResultsFilterInput

filters.biomarkerId

ID

Id of the biomarker.

filters.boiomerkerName

String

Name of the biomarker.

filters.categoryId

ID

Id of biomarker category.

filters.IntervalRange

BiomarkerIntervalRange

enum: ALL, IN_OPTIMAL_RANGE, IN_RANGE, OUT_RANGE

filters.labTestReportId

ID

Id of the test report.

Available Fields

Field NameTypeDescription

id

ID

Id of the profile biomarker.

date

datetime

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

value

GenericScalar

The GenericScalar scalar type represents a generic GraphQL scalar value that could be: String, Boolean, Int, Float, List or Object.

displayValue

String

Value to be displayed

createdAt

datetime

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

updatedAt

datetime

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

biomarker

biomarker

biomarker.id

Id

Id of the biomarker.

biomarker.name

String

Name of biomarker.

alert

Boolean

True if alert is active otherwise False.

alertText

String

Text shown in the alert.

Example

query {
    historicalBiomarkerResults {
        edges {
            node {
                id 
                date 
                value 
                createdAt 
                updatedAt
                alert
                alertText
                biomarker {
                    id 
                    name
                }
            }
        }
    }
}

Last updated