This file contains 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
# /etc/profile | |
# Set our umask | |
umask 022 | |
# Append "$1" to $PATH when not already in. | |
# This function API is accessible to scripts in /etc/profile.d | |
append_path () { | |
case ":$PATH:" in | |
*:"$1":*) |
This file contains 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 { Field, ID, InputType, ObjectType } from "type-graphql"; | |
import { Column, Entity, PrimaryGeneratedColumn } from "typeorm"; | |
@ObjectType() | |
@Entity() | |
export class Todo { | |
@Field() | |
@PrimaryGeneratedColumn() | |
id: number; |
NewerOlder