UNPKG

react-native-health-symptoms

Version:

A React Native package to interact with Apple HealthKit, including symptoms

64 lines (56 loc) 1.43 kB
# getWeightSamples Query for weight samples. The options object is used to setup a query to retrieve relevant samples. Example input options: ```javascript let options = { unit: 'pound', // optional; default 'pound' startDate: new Date(2021, 0, 0).toISOString(), // required endDate: new Date().toISOString(), // optional; default now ascending: false, // optional; default false limit: 10, // optional; default no limit } ``` Call the method: ```javascript AppleHealthKit.getWeightSamples( options, (err: Object, results: Array<HealthValue>) => { if (err) { return } console.log(results) }, ) ``` Example output: ```json [ { "id": "3d366e60-4f7c-4f72-b0ce-479ea19279b8", // The universally unique identifier (UUID) for this HealthKit object. "value": 160, "startDate": "2016-07-09T00:00:00.000-0400", "endDate": "2016-07-10T00:00:00.000-0400", "metadata": { "HKWasUserEntered": false } }, { "id": "cb7a2de6-f8d2-48cc-8cca-3d9f58a3601a", "value": 161, "startDate": "2016-07-08T00:00:00.000-0400", "endDate": "2016-07-09T00:00:00.000-0400", "metadata": { "HKWasUserEntered": false } }, { "id": "4dddd4da-2adf-4d1c-a400-10790ffe2c0d", "value": 165, "startDate": "2016-07-07T00:00:00.000-0400", "endDate": "2016-07-08T00:00:00.000-0400", "metadata": { "HKWasUserEntered": false } } ] ```