mozilla-sensorweb / sensorthings

Node implementation of the OGC SensorThings API
Mozilla Public License 2.0
14 stars 9 forks source link

$skip does not work on Things(x)/Locations #242

Closed albertopq closed 7 years ago

albertopq commented 7 years ago

STR:

1.- Create 1 Thing (with 1 Location) 2.- Create a 2nd Thing (with a new Location) 3.- GET /Things(2)/Locations?$skip=1

Expected:

iot.count = 1 but no value = []

Actual

iot.count=1 and value = [LocationInstance]

*Note: GET /Things(1)/Locations?$skip=1 works as expected