GraphQLWithNS is the http handler the namespaced GraphQL endpoint
(ah auth.HandlerFunc, ns string)
| 705 | |
| 706 | // GraphQLWithNS is the http handler the namespaced GraphQL endpoint |
| 707 | func (s *HttpService) GraphQLWithNS(ah auth.HandlerFunc, ns string) http.Handler { |
| 708 | return s.apiHandler(&ns, ah, false) |
| 709 | } |
| 710 | |
| 711 | // REST is the http handler the REST endpoint |
| 712 | func (s *HttpService) REST(ah auth.HandlerFunc) http.Handler { |
no test coverage detected