Currently, if being invoked on an input document with multiple named queries, auth validation walks the entire document. This leads to the request being rejected if any of the queries in the document fail authorization even if the failing queries are not requested.
The entire document will be traversed here: Line 59 in DocumentValidator.cs
This should be changed to only walk the selected query.