Skip to content

Instantly share code, notes, and snippets.

@eduardopc
Created December 13, 2020 06:21
Show Gist options
  • Save eduardopc/5d9fc99f537ac6d44c6c6ed4a33b4466 to your computer and use it in GitHub Desktop.
Save eduardopc/5d9fc99f537ac6d44c6c6ed4a33b4466 to your computer and use it in GitHub Desktop.
import { Field, InputType } from 'type-graphql';
@InputType()
export class AnimalInput {
@Field()
animal: string;
@Field()
emoji: string;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment