Enable Task creation (#688)
This commit is contained in:
@@ -8,6 +8,7 @@ import { CompanyUncheckedCreateNestedManyWithoutAccountOwnerInput } from '../com
|
||||
import { RefreshTokenUncheckedCreateNestedManyWithoutUserInput } from '../refresh-token/refresh-token-unchecked-create-nested-many-without-user.input';
|
||||
import { CommentUncheckedCreateNestedManyWithoutAuthorInput } from '../comment/comment-unchecked-create-nested-many-without-author.input';
|
||||
import { CommentThreadUncheckedCreateNestedManyWithoutAuthorInput } from '../comment-thread/comment-thread-unchecked-create-nested-many-without-author.input';
|
||||
import { CommentThreadUncheckedCreateNestedManyWithoutAssigneeInput } from '../comment-thread/comment-thread-unchecked-create-nested-many-without-assignee.input';
|
||||
|
||||
@InputType()
|
||||
export class UserUncheckedCreateInput {
|
||||
@@ -90,5 +91,8 @@ export class UserUncheckedCreateInput {
|
||||
comments?: CommentUncheckedCreateNestedManyWithoutAuthorInput;
|
||||
|
||||
@Field(() => CommentThreadUncheckedCreateNestedManyWithoutAuthorInput, {nullable:true})
|
||||
CommentThread?: CommentThreadUncheckedCreateNestedManyWithoutAuthorInput;
|
||||
authoredCommentThreads?: CommentThreadUncheckedCreateNestedManyWithoutAuthorInput;
|
||||
|
||||
@Field(() => CommentThreadUncheckedCreateNestedManyWithoutAssigneeInput, {nullable:true})
|
||||
assignedCommentThreads?: CommentThreadUncheckedCreateNestedManyWithoutAssigneeInput;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user