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
Can you make import * work including root fields.
#import Mutation.*, Query.*, * from "./schema/auth.graphql" #import Mutation.*, Query.*, Subscription.*, * from "./schema/user.graphql"
right now I'd have to do the above.
The text was updated successfully, but these errors were encountered:
Hi @ralphchristianeclipse ! In 1.0.0 beta release, we introduced a lot of changes including a fix for this issue; Could you install graphql-import@beta to try new changes? Don't forget to modify your code regarding to the migration notes in README. https://github.com/ardatan/graphql-import#updating-from-07x
graphql-import@beta
README
Sorry, something went wrong.
Available in 1.0.0!
The import * still doesn't work in 1.0.2. I have to
import *
# import SpecificType, * from "./generated-schema/schema.graphql"
rather than
# import * from "./generated-schema/schema.graphql"
@flexlee Could you open a seperate issue with a minimal reproduction? Thanks.
No branches or pull requests
Can you make import * work including root fields.
right now I'd have to do the above.
The text was updated successfully, but these errors were encountered: