dgraph-orm icon indicating copy to clipboard operation
dgraph-orm copied to clipboard

dGraph ORM written in TypeScript

Results 26 dgraph-orm issues
Sort by recently updated
recently updated
newest added

Sample data: ```typescript const data = [ { uid: '0x1', 'Person.name': 'John' }, { uid: '0x2', 'Person.name': 'Jane', 'Person.friends': [ { uid: '0x1', } ] } ]; ``` How do...

Bumps [jquery](https://github.com/jquery/jquery) from 3.4.1 to 3.5.1. Release notes Sourced from jquery's releases. jQuery 3.5.0 Released! See the blog post: https://blog.jquery.com/2020/04/10/jquery-3-5-0-released/ and the upgrade guide: https://jquery.com/upgrade-guide/3.5/ NOTE: Despite being a minor...

dependencies

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...

Currently we don't support mapping facet alias in the `ObjectMapper`. However, if this feature is important, we can try to find a way to support it.