Use the articlesRecommended query to get the list of all recommended articles.
To retrieve article recommendations based on a user’s biomarker results, please refer to ""
Available Arguments
Argument
Type
Description
first
Int
Retrieves the first results from the list.
after
String
before
String
id
ID
Id of the Lab Test Report.
last
Int
Available Fields
Field Name
Type
Description
id
ID
Recommended Articles Id.
createdAt
DateTime
Recommended Articles date
article
Article
biomarker
Biomarker
Example
query articlesRecommended($id: ID) {
articlesRecommended(id: $id) {
edges {
node {
id createdAt updatedAt
article { id title imageUrl }
biomarker {
id name method description range { max min }
aliases { name language }
category { id name parent { id name } }
units { name factor alias }
optimalRange { max min }
borderlineRange { max min }
}
}
}
}
}