Skip to content
Snippets Groups Projects
experiment-edit.input.ts 249 B
Newer Older
import { Field, InputType } from '@nestjs/graphql';

@InputType()
export class ExperimentEditInput {
  @Field({ nullable: true })
  name?: string;

Steve Reis's avatar
Steve Reis committed
  @Field({ nullable: true })
  shared?: boolean;

  @Field({ nullable: true })
  viewed?: boolean;
}