lsh

Results 1 issues of lsh

schema define: ```typescript @Node({ dgraphType: 'Post' }) export class PostEntity { @Property({ type: PropertyType.String }) title: string; } ``` schema build output: ```typescript type Post { PostEntity.title: string // prefix...