-
Notifications
You must be signed in to change notification settings - Fork 89
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2665 from artsy/staging
Deploy
- Loading branch information
Showing
9 changed files
with
115 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
import { | ||
ASTVisitor, | ||
GraphQLError, | ||
FieldNode, | ||
ValidationContext, | ||
getNamedType, | ||
isIntrospectionType, | ||
} from "graphql" | ||
|
||
// Adapted from https://github.com/graphql/graphql-js/pull/2600. | ||
// TODO: replace once using graphql >=15.2.0 | ||
|
||
/** | ||
* Prohibit introspection queries | ||
* | ||
* A GraphQL document is only valid if all fields selected are not fields that | ||
* return an introspection type. | ||
* | ||
* Note: This rule is optional and is not part of the Validation section of the | ||
* GraphQL Specification. This rule effectively disables introspection, which | ||
* does not reflect best practices and should only be done if absolutely necessary. | ||
*/ | ||
export const NoSchemaIntrospectionCustomRule = ( | ||
context: ValidationContext | ||
): ASTVisitor => { | ||
return { | ||
Field(node: FieldNode) { | ||
const contextType = context.getType() | ||
if (!contextType) return | ||
const type = getNamedType(contextType) | ||
if (type && isIntrospectionType(type)) { | ||
context.reportError( | ||
new GraphQLError( | ||
`GraphQL introspection has been disabled, but the requested query contained the field "${node.name.value}".`, | ||
node | ||
) | ||
) | ||
} | ||
}, | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters