We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I've been using this library with great success on React Native, but when I try calling any of the mutations from a Meteor web app, I'm getting:
Any ideas on what I'm doing wrong? I've tried adding
import "regenerator-runtime/runtime";
to both client and server code, but the result is the same.
The text was updated successfully, but these errors were encountered:
The solution seems to be:
global.regeneratorRuntime = require('regenerator-runtime/runtime');
on the client.
See: https://forums.meteor.com/t/regeneratorruntime-is-not-defined-after-upgrading-to-1-4-2-1/31335/3?u=joncursi
Sorry, something went wrong.
No branches or pull requests
I've been using this library with great success on React Native, but when I try calling any of the mutations from a Meteor web app, I'm getting:
Any ideas on what I'm doing wrong? I've tried adding
to both client and server code, but the result is the same.
The text was updated successfully, but these errors were encountered: