Skip to content

Commit

Permalink
fix: Eliminar queries de enlaces firmados
Browse files Browse the repository at this point in the history
  • Loading branch information
jhon-alex-gil-franco committed Sep 13, 2024
1 parent 40e013d commit 2367298
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/utils/createBaseResolversFile.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const createBaseResolversFile = async (gqlModels: GQLModel[] | undefined) => {

const resolverArray = [
...gqlModels.map((model) => `${unCapitalize(model.name)}Resolvers`),
'generalResolvers',
// 'generalResolvers',
].join(',');

// Array de tipos
Expand Down
5 changes: 1 addition & 4 deletions src/utils/createSchemasFiles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,7 @@ const createSchemasFiles = async (
desc # Descending order
}
type Query {
getSignedUrlForUpload(file: String): PresignedURL
getMultipleSignedUrlsForUpload(files: [String]): [PresignedURL]
}
${
enums?.length !== 0 && enums
Expand Down

0 comments on commit 2367298

Please sign in to comment.