Skip to content

Latest commit

 

History

History
38 lines (30 loc) · 767 Bytes

getWater.md

File metadata and controls

38 lines (30 loc) · 767 Bytes

getWater

Get the total amount of consumed water for a specific day (starting and ending at midnight).

An optional options object may be provided containing date field representing the selected day. If date is not set or an options object is not provided then the current day will be used.

Example input options:

let options = {
    date: new Date().toISOString(), // optional; default now
    includeManuallyAdded: false // optional: default true
}

Call the method:

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

Example output:

[
  {
    "date": "2021-03-22T16:00:00.000-0300",
  }
]