package graph import ( "git.allthings.red/~neallred/gql-interfaces-snippet/graph/model" ) func nStr(x string) *string { return &(x) } func nhdt(x model.HardDriveType) *model.HardDriveType { return &(x) } func nInt(x int) *int { return &(x) }