feat: user update and subscribers added
This commit is contained in:
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user