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
Is your feature request related to a problem? Please describe. Amplify codegen dumps it's graphql all over the place like an itinerant toddler.
Describe the solution you'd like Dump all the generated code for an api in a folder named for the API
projects: {ApiName}: schemaPath: src/{ApiName}/schema.json includes: - src/{ApiName}/**/*.ts excludes: - ./amplify/** - src/{ApiName}/types.ts extensions: amplify: codeGenTarget: typescript generatedFileName: src/{ApiName}/types.ts docsFilePath: src/{ApiName} extensions: amplify: version: 3
There could even be some barrels for importing convenience
// {ApiName}/index.ts export * from './mutations' export * from './queries' export * from './subscriptions' export * from './types'
// index.ts export * as {ApiName} from './ {ApiName}'
The text was updated successfully, but these errors were encountered:
@dopry thanks for the suggestion to summarize the proposed enhancements:
graphql
Sorry, something went wrong.
I like this idea as it allows us to isolate each API into it's own "module".
No branches or pull requests
Is your feature request related to a problem? Please describe.
Amplify codegen dumps it's graphql all over the place like an itinerant toddler.
Describe the solution you'd like
Dump all the generated code for an api in a folder named for the API
There could even be some barrels for importing convenience
The text was updated successfully, but these errors were encountered: