hotfix: fixing type errors in backend graphql layer (HBE-174) (#45)
* chore: added the nest graphql fix for making it use Int over Float * chore: changed the type of cursor to Int in PaginationArgs * chore: fixed description mismatch in rootUserCreation functions in UserCollection module * chore: removed unused title type in UserRequest input-args * fix: added ID scaler in user-request input type * fix: added ID scaler in team-invitation and user-history --------- Co-authored-by: Mir Arif Hasan <arif.ishan05@gmail.com>
This commit is contained in:
@@ -209,7 +209,7 @@ export class UserCollectionResolver {
|
||||
}
|
||||
|
||||
@Mutation(() => UserCollection, {
|
||||
description: 'Creates a new child REST user collection',
|
||||
description: 'Creates a new child GraphQL user collection',
|
||||
})
|
||||
@UseGuards(GqlAuthGuard)
|
||||
async createGQLChildUserCollection(
|
||||
@@ -229,7 +229,7 @@ export class UserCollectionResolver {
|
||||
}
|
||||
|
||||
@Mutation(() => UserCollection, {
|
||||
description: 'Creates a new child GraphQL user collection',
|
||||
description: 'Creates a new child REST user collection',
|
||||
})
|
||||
@UseGuards(GqlAuthGuard)
|
||||
async createRESTChildUserCollection(
|
||||
@@ -309,7 +309,8 @@ export class UserCollectionResolver {
|
||||
}
|
||||
|
||||
@Mutation(() => Boolean, {
|
||||
description: 'Move user collection into new parent or root',
|
||||
description:
|
||||
'Update the order of UserCollections inside parent collection or in root',
|
||||
})
|
||||
@UseGuards(GqlAuthGuard)
|
||||
async updateUserCollectionOrder(
|
||||
|
||||
Reference in New Issue
Block a user