Skip to content

Commit ff4054f

Browse files
committed
chore: gql type, remove dangling log
1 parent e64313f commit ff4054f

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

packages/backend/src/graphql/resolvers/asset.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,6 @@ export const createAsset: MutationResolvers<ForTenantIdContext>['createAsset'] =
9191
}
9292
}
9393
)
94-
ctx.logger.info({ tenantId }, 'tenantId for create asset')
9594
const assetService = await ctx.container.use('assetService')
9695
const assetOrError = await assetService.create({
9796
...args.input,

packages/backend/src/graphql/schema.graphql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -675,7 +675,7 @@ type Asset implements Model {
675675
): FeesConnection
676676
"The date and time when the asset was created."
677677
createdAt: String!
678-
tenantId: String
678+
tenantId: ID!
679679
}
680680

681681
enum SortOrder {

0 commit comments

Comments
 (0)