import { Command, CommandRunner } from 'nest-commander'; import { UserEntity } from 'src/entities/user.entity'; import { UserService } from 'src/services/user.service'; @Command({ name: 'list-users', description: 'List Immich users', }) export class ListUsersCommand extends CommandRunner { constructor(private userService: UserService) { super(); } async run(): Promise { try { const users = await this.userService.getAll( { user: { id: 'cli', email: 'cli@immich.app', isAdmin: true, } as UserEntity, }, true, ); console.dir(users); } catch (error) { console.error(error); console.error('Unable to load users'); } } }