Legacy | User's Biomarkers

Mutation used to set the user's biomarker data.

Create Profile Biomarkers

Use the createProfileBiomarkers mutation to set biomarker data on the user's profile.

mutation {
  createProfileBiomarkers(
    hba1c: 3.0
    totalCholesterol: 200
    cholesterolLdl: 200
    vitaminD: 200
    vitaminB12: 100
    cortisol: 20
    ferritin: 200
  ) {
    success
  }
}

Update Profile Biomarkers

Use the updateProfileBiomarkers mutation to update biomarker data on the user's profile.

Use the MyProfile query to obtain biomarker and other user profile data.

Last updated

Was this helpful?