Query for Oxygen Saturation samples.
let options = {
startDate: (new Date(2021, 1, 1)).toISOString(), // required
endDate: (new Date()).toISOString(), // optional; default now
ascending: false, // optional; default false
limit: 10, // optional; default no limit
};
AppleHealthKit.getOxygenSaturationSamples(options, (callbackError, results) => {
if (callbackError) {
return;
}
console.log(results)
});
[
{
endDate: "2021-03-04T10:56:00.000-0500",
sourceId: "com.apple.Health",
sourceName: "Health",
startDate: "2021-03-04T10:56:00.000-0500",
value: 0.98
},
{
endDate: "2021-03-04T09:55:00.000-0500",
sourceId: "com.apple.Health",
sourceName: "Health",
startDate: "2021-03-04T09:55:00.000-0500",
value: 0.97
},
{
endDate: "2021-03-04T08:00:00.000-0500",
sourceId: "com.apple.Health",
sourceName: "Health",
startDate: "2021-03-04T08:00:00.000-0500",
value: 0.95
},
{
endDate: "2021-03-03T21:43:00.000-0500",
sourceId: "com.apple.Health",
sourceName: "Health",
startDate: "2021-03-03T21:43:00.000-0500",
value: 0.97
}
]