Skip to content

Latest commit

 

History

History
45 lines (36 loc) · 777 Bytes

getTotalFatSamples.md

File metadata and controls

45 lines (36 loc) · 777 Bytes

getTotalFatSamples

A quantity sample type that measures the amount of total fat consumed.

Permission required:

  • AppleHealthKit.Constants.Permissions.FatTotal

Example input options:

let options = {
  startDate: new Date(2021, 0, 0).toISOString(), // required
  endDate: new Date().toISOString(), // optional; default now
}

Call the method:

AppleHealthKit.getTotalFatSamples(
  (options: HealthInputOptions),
  (err: Object, results: HealthValue) => {
    if (err) {
      return
    }
    console.log(results)
  },
)

Example output:

[
  {
    "endDate": "2021-04-01T22:00:00.000+0300", 
    "startDate": "2021-04-01T22:00:00.000+0300", 
    "value": 39,
    "metadata": {
      "HKWasUserEntered": false
    }
  }
]