()
| 44 | }; |
| 45 | |
| 46 | const throwIntrospectionError = () => { |
| 47 | throw new GraphQLError('Introspection is not allowed', { |
| 48 | extensions: { |
| 49 | http: { |
| 50 | status: 403, |
| 51 | }, |
| 52 | } |
| 53 | }); |
| 54 | }; |
| 55 | |
| 56 | const IntrospectionControlPlugin = (publicIntrospection) => ({ |
| 57 |
no outgoing calls
no test coverage detected
searching dependent graphs…