developer239/node-type-orm-graphql

View on GitHub
src/modules/Blog/inputs/UpdatePage.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { Length } from 'class-validator'
import { Field, InputType } from 'type-graphql'

@InputType()
export class UpdatePageInput {
  @Field()
  id: number

  @Field()
  @Length(1, 255)
  title: string

  @Field()
  text: string
}