UNPKG

@kingstinct/react-native-healthkit

Version:
10 lines (9 loc) 304 B
import { CategoryTypes } from '../modules'; export async function getCategorySampleById(identifier, uuid) { const samples = await CategoryTypes.queryCategorySamples(identifier, { limit: 1, filter: { uuid: uuid }, }); return samples[0]; } export default getCategorySampleById;