Query for sleep samples.Each sleep sample represents a period of time with a startDate and an endDate.the sample's value will be either `INBED` or `ASLEEP`. these values should overlap,meaning that two (or more) samples represent a single nights sleep activity. see[Healthkit SleepAnalysis] reference documentationThe options object is used to setup a query to retrieve relevant samples.The options must contain `startDate` and may also optionally include `endDate`and `limit` options```javascriptletoptions={startDate:(newDate(2016,10,1)).toISOString(),// requiredendDate:(newDate()).toISOString(),// optional; default nowlimit:10,// optional; default no limit};```The callback function will be called with a `samples` array containing objectswith *value*, *startDate*, and *endDate* fields```javascript