UNPKG

@kingstinct/react-native-healthkit

Version:
12 lines (11 loc) 278 B
import { Workouts } from '../modules'; const getWorkoutById = async (uuid) => { const workouts = await Workouts.queryWorkoutSamples({ limit: 1, filter: { uuids: [uuid], }, }); return workouts[0]; }; export default getWorkoutById;