-
Notifications
You must be signed in to change notification settings - Fork 178
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
Maximum call stack size exceeded #40
Comments
@KordonDev would it be possible to include the |
looks like this may be related: #6 |
I posted the library in a gist you can find here. To generate the file I cloned the repository and transpiled it with the newest versions of the libraries in My query looks like this
For this short query the function |
Further investigation got me to the point that I noticed that with the now graphql version, the property My workaround is to store the properties I will make an pull request where you can see the problem. Now I get the error in apollo-client, I will look for that later. |
this should be resolved as part of |
This is because of apollographql/graphql-tag#40
I have to use the
null
as value in mutations. Therefore I cloned the repository and packaged it.Now in
parse.js
line 488 in the functionparseValueLiteral
accepts null as value. But when I use it in the browser i get the error:To use Graphql-tag in the browser I used browserify (
browserify index.js --standalone graphqlTag -o=browser.js
).In my file line 77 is:
function stripLoc (doc, removeLocAtThisLevel) {
.Line 105 is
in function
stripLoc
.The text was updated successfully, but these errors were encountered: