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 can include multiple schema files:
schema: - "*.graphqls"
However, that doesn't work recursively.
When I spread my schema into multiple files, I currently have to import them as follows:
schema: - "api/*.graphqls" - "api/query/*.graphqls" - "api/mutation/*.graphqls" - "api/mutation/auth/*.graphqls"
I would like to import them recursively:
schema: - "api/**/*.graphqls"
It's also a simpler way to split the schema into multiple files instead of #6 in my opinion.
The text was updated successfully, but these errors were encountered:
Sounds good to me, #6 is useful for different reasons (remapping types from remote schemas) but its a long way off.
Sorry, something went wrong.
added schema file globbing fixes 99designs#631
e9389ef
Merge pull request #717 from cbelsole/schema_file_globbing
694f90a
added schema file globbing fixes #631
32c00f3
Merge pull request 99designs#717 from cbelsole/schema_file_globbing
b55b66e
Successfully merging a pull request may close this issue.
I can include multiple schema files:
However, that doesn't work recursively.
When I spread my schema into multiple files, I currently have to import them as follows:
I would like to import them recursively:
It's also a simpler way to split the schema into multiple files instead of #6 in my opinion.
The text was updated successfully, but these errors were encountered: