Last active
April 20, 2018 10:39
-
-
Save pie6k/80154a31cbec3cca51d5fcfadf0673b6 to your computer and use it in GitHub Desktop.
typegql examples
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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