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 copied the template and ran through the docs from the start.
The issue is a broken import in src/graphql/index.ts on line 6.
src/graphql/index.ts
The generated file has: import schema from "./schema";
import schema from "./schema";
But it should be:
import schema from "./generated/schema";
The text was updated successfully, but these errors were encountered:
yah, it's fixed in #604 but I haven't created a new image since
Sorry, something went wrong.
new image and version updated in ent-starter followed the docs and it worked.
No branches or pull requests
I copied the template and ran through the docs from the start.
The issue is a broken import in
src/graphql/index.ts
on line 6.The generated file has:
import schema from "./schema";
But it should be:
import schema from "./generated/schema";
The text was updated successfully, but these errors were encountered: