Description
Is it possible to white list one or more endpoints?
for example: I would like to require authentication for all mutation and queries except for Login.
Currently we authorize each mutation individually - we fear forgetting one will ship and endpoint with open access. The query mutation we AuthorizeWith at the root level therefore it catches all endpoints.
If this is not possible with the current implementation, I am happy to create a PR but how would this work? Instead of AuthorizeWith on an endpoint have DisableAuthorization() ? This could add metadata that is inspected during evaluation to bypass root level policies. What are the drawbacks to this approach?
Update
Took the initial approach of removing operation level validation and the fields now inherit parent policies if they are not flagged a public.