Partial selection with compound key?

Hello,

According to https://developer.couchbase.com/documentation/server/3.x/admin/Views/views-querying.html,
under Partial selection with compound keys, it says "A limitation of this structure is that it is not possible to ignore the earlier array values. For example, to select information from 10am to 2pm each day, you cannot use this parameter set:

?startkey=[null,null,null,10,0]&endkey=[null,null,null,14,0]
"

Couple of questions.

  1. is this limitation due to some technical reason?
  2. Obviously, one thing we can work around is that we can create new view…however, it looks like there is no way that we can have and maintain only one view, but different querystring to get the partial result…Is my understanding correct?

Thanks,