-
-
Notifications
You must be signed in to change notification settings - Fork 818
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
graphql_1.parse is not a function #655
Comments
maybe you need to downgrade the version of graphql to "graphql": "^0.12.3" |
I also have this when using custom scalar and schema stitching. |
@manico Yes, I have a custom scalar (for Date). But my problem was resolved by itself. I just restart (remove and upload my app again). |
This happens from time to time without any good error message. :( |
This looks like an issue with bundling, and there isn't a reproduction. |
I think this is the underlying issue: graphql/graphql-js#1248 |
Hi there!
I'm trying to deploy my app that uses apollo/graphql. Locally everything works correctly. But on the server machine my app doesn't start and in console there is an error.
graphql_1.parse is not a function
I figured out that the problem is in makeExecutableSchema
here
const schema = makeExecutableSchema({ typeDefs: [ gqlRootQueries, gqlServicesQuery ], resolvers: merge( gqlServicesResolvers ) });
full error:
"graphql": "^0.13.1",
"graphql-tools": "^2.21.0",
my server features:
1 GB Memory / 25 GB Disk - Ubuntu 16.04.3 x64
I'm really stuck and I have no a slightest clue hot to resolve it.
The text was updated successfully, but these errors were encountered: