feat: user update and subscribers added

This commit is contained in:
Mir Arif Hasan
2022-12-22 17:35:44 +06:00
parent c42b6e2fdb
commit 3cc22575cb
5 changed files with 94 additions and 6 deletions

View File

@@ -0,0 +1,18 @@
import { Field, InputType } from '@nestjs/graphql';
@InputType()
export class UpdateUserInput {
@Field({
nullable: true,
name: 'currentRESTSession',
description: 'JSON string of the session',
})
currentRESTSession?: string;
@Field({
nullable: true,
name: 'currentGQLSession',
description: 'JSON string of the session',
})
currentGQLSession?: string;
}