-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix Cannot read property 'some' of undefined in apollo-server-core/di… #2924
Merged
abernix
merged 9 commits into
apollographql:master
from
mrsunboss:fix/isDirectiveDefined
Jun 26, 2019
Merged
fix Cannot read property 'some' of undefined in apollo-server-core/di… #2924
abernix
merged 9 commits into
apollographql:master
from
mrsunboss:fix/isDirectiveDefined
Jun 26, 2019
Conversation
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
…st/utils/isDirectiveDefined.js
@mrsunboss: Thank you for submitting a pull request! Before we can merge it, you'll need to sign the Meteor Contributor Agreement here: https://contribute.meteor.com/ |
Specifically, make sure to test all possibilities which might come in here.
…eality. While no TypeScript user would have ever been able to use it as such, Apollo Server has for a long time (as a side-effect of its past reliance on `graphql-tools`) accepted string types (and arrays of string types) for `typeDefs`. This hasn't been reflected in the TypeScript types, and has thus made it possible to sandbag non-TypeScript users (which let's remind ourselves, is still the majority) who were strings, when new code — like that in apollographql#2762 — didn't defend against what TypeScript indicated would be fine. Even if we don't necessarily support string types as a common pattern anymore, they still work, and we need to make sure we're coding for what we expect to work until the time comes to make a breaking change.
abernix
added a commit
that referenced
this pull request
Jun 26, 2019
Thank you very much for submitting this! I've added some regression tests and fixed the likely reason this was introduced in the first place in some follow-up commits, if you're interested. |
Thank you very much. |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
fix Cannot read property 'some' of undefined in apollo-server-core/dist/utils/isDirectiveDefined.js
Fixes #2921