mirror of
https://github.com/IT4Change/gradido.git
synced 2026-02-06 09:56:05 +00:00
14 lines
231 B
TypeScript
14 lines
231 B
TypeScript
import { IsString } from 'class-validator'
|
|
import { ArgsType, Field } from 'type-graphql'
|
|
|
|
@ArgsType()
|
|
export class UserArgs {
|
|
@Field()
|
|
@IsString()
|
|
identifier: string
|
|
|
|
@Field()
|
|
@IsString()
|
|
communityIdentifier: string
|
|
}
|