graphql return null for date code example
Example: type time graphql return null
@Column({type: "time"})
startTime: Date
// return null in playground
@Column({type: "time"})
startTime: string
// return 09:10:23 in playground
@Column({type: "time"})
startTime: Date
// return null in playground
@Column({type: "time"})
startTime: string
// return 09:10:23 in playground