Historical Biomarker Results
User historicalBiomarkerResults
to retrieve all of the user's historical lab results for all biomarkers.
Available Arguments
Available Fields
Example
query {
historicalBiomarkerResults {
edges {
node {
id
date
value
createdAt
updatedAt
alert
alertText
biomarker {
id
name
}
}
}
}
}
{
"data": {
"historicalBiomarkerResults": {
"edges": [
{
"node": {
"id": "UHJvZmlsZUJpb21hcmtlcjox",
"date": "2022-12-12T00:00:00+00:00",
"value": {
"type": "number",
"value": 10
},
"createdAt": "2022-12-12T15:00:11.571707+00:00",
"updatedAt": "2022-12-12T15:00:11.571728+00:00",
"alert": true,
"alertText": "Sample Text",
"biomarker": {
"id": "QmlvbWFya2VyOjE=",
"name": "Diabetes Risk Index"
}
}
},
{
"node": {
"id": "UHJvZmlsZUJpb21hcmtlcjoy",
"date": "2022-10-01T00:00:00+00:00",
"value": {
"type": "number",
"value": 10
},
"createdAt": "2022-12-12T15:08:54.903325+00:00",
"updatedAt": "2022-12-12T15:08:54.903339+00:00",
"biomarker": {
"id": "QmlvbWFya2VyOjE=",
"name": "Diabetes Risk Index"
}
}
}
]
}
}
}
Last updated