mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
17 lines
345 B
TypeScript
17 lines
345 B
TypeScript
import { ArgsType, Field, Int } from 'type-graphql'
|
|
|
|
@ArgsType()
|
|
export default class SearchUsersArgs {
|
|
@Field(() => String)
|
|
searchText: string
|
|
|
|
@Field(() => Int, { nullable: true })
|
|
currentPage?: number
|
|
|
|
@Field(() => Int, { nullable: true })
|
|
pageSize?: number
|
|
|
|
@Field(() => Boolean, { nullable: true })
|
|
notActivated?: boolean
|
|
}
|