Skip to content

Instantly share code, notes, and snippets.

@pie6k
Last active April 20, 2018 10:39
Show Gist options
  • Save pie6k/80154a31cbec3cca51d5fcfadf0673b6 to your computer and use it in GitHub Desktop.
Save pie6k/80154a31cbec3cca51d5fcfadf0673b6 to your computer and use it in GitHub Desktop.
typegql examples
import { ObjectType, Field } from 'typegql';
@ObjectType()
export class Product {
@Field()
id: number;
@Field()
price: number;
@Field()
isExpensive(): boolean {
return this.price > 50;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment