-
Notifications
You must be signed in to change notification settings - Fork 470
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
[Critical] Invalid reference to globalTypes.ts #543
Labels
Comments
I am using "apollo": "1.7.0", |
Hi, this is definitely a bug. Investigating now! |
shadaj
added a commit
that referenced
this issue
Aug 10, 2018
shadaj
added a commit
that referenced
this issue
Aug 10, 2018
shadaj
added a commit
that referenced
this issue
Aug 10, 2018
When will a modified version of this be released? |
@shadaj awesome that you found the bug! When do you think you'll be pushing a new release? Anxious to get my hands on all the new features in 1.7.x |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The import of global types in each file looks is missing a file path:
import { SomeInput } from "globalTypes";
It should have a leading
./
for the import to work, eg:import { SomeInput } from "./globalTypes";
I am using this command:
I really like how you moved all input types to a shared file!
The text was updated successfully, but these errors were encountered: