Views access from N1QL

Hello,
I’ve créate a view using Map and Reduce to generate an aggregate output.

I can Access from REST:

http://127.0.0.1:8092/HR/_design/suma/_view/suma?connection_timeout=60000&group=true&inclusive_end=true&limit=6&reduce=true&skip=0&stale=false
{“rows”:[
{“key”:10,“value”:143360000},
{“key”:20,“value”:178176000},
{“key”:30,“value”:154009600}
]
}

The question:
Can I Access to this view from N1QL?

Thanks
Arturo

Unfortunately, no. We hope to introduce N1QL materialized views (same as SQL materialized views) in the future. But no specific plans or roadmap yet.

You can access both from the SDK for the language of your choice. They all have built in ways of managing the options and load balancing over the nodes in the cluster with the service. Where appropriate, they also give you a common interface to accessing N1QL and views. See the developer docs.