Skip to content

Commit

Permalink
fix: small tweak to remove the unnecessary / in generated moduleResol…
Browse files Browse the repository at this point in the history
…vers import
  • Loading branch information
lgandecki committed Aug 21, 2023
1 parent 01d06b7 commit 448240c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/generate/templates/moduleResolvers.handlebars
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import {Resolvers} from "./types";
{{#each queries}}import { {{name}}Query } from "{{../appPrefix}}/{{../graphqlFileRootPath}}queries/{{name}}Query";{{/each}}
{{#each mutations}}import { {{name}}Mutation } from "{{../appPrefix}}/{{../graphqlFileRootPath}}mutations/{{name}}Mutation";{{/each}}
{{#each scalars}}import { {{this}} } from "{{../appPrefix}}/{{../graphqlFileRootPath}}scalars/{{this}}";{{/each}}
{{#each typeResolvers}}{{#each fieldName}}import { {{../typeName}}{{capitalizedName}} } from "{{../../appPrefix}}/{{../../graphqlFileRootPath}}/types/{{../typeName}}{{capitalizedName}}";{{/each}}{{/each}}
{{#each typeResolvers}}{{#each fieldName}}import { {{../typeName}}{{capitalizedName}} } from "{{../../appPrefix}}/{{../../graphqlFileRootPath}}types/{{../typeName}}{{capitalizedName}}";{{/each}}{{/each}}

// Warning, this file is autogenerated, please don't change it manually.
// Your changes will get overwritten.
Expand Down

0 comments on commit 448240c

Please sign in to comment.