Recommended Articles

Use the articlesRecommended query to get the list of all supplements recommended for the user.

Available Arguments

ArgumentTypeDescription

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 NameTypeDescription

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 }
                }
            }
        }
    }
}

Last updated