* feat: wip refactor folder structure * Fix * fix position --------- Co-authored-by: Charles Bochet <charles@twenty.com>
8 lines
139 B
TypeScript
8 lines
139 B
TypeScript
import { Field, ObjectType } from '@nestjs/graphql';
|
|
|
|
@ObjectType()
|
|
export class UserExists {
|
|
@Field(() => Boolean)
|
|
exists: boolean;
|
|
}
|