dgraph-orm
TypeScript icon, indicating that this package has built-in type declarations

1.2.5 • Public • Published

dgraph-orm

Simplified schema creation, queries and mutations for Dgraph.

Installation

npm install dgraph-orm

Full Documentation

https://ashokvishwakarma.github.io/dgraph-orm

Your first schema and model

import dgraph from 'dgraph-orm';
 
const UserSchema = new dgraph.Schema('user', {
  name: {
    type: dgraph.Types.STRING,
    index: true,
    token: {
      term: true
    }
  },
  email: {
    type: dgraph.Types.STRING,
    index: true,
    unique: true,
    token: {
      exact: true
    }
  },
  password: dgraph.Types.PASSWORD,
  bio: dgraph.Types.STRING,
  friend: {
    type: dgraph.Types.UID,
    model: 'user', // related model name
    count: true,
    reverse: true
  }
});
 
/**
 * Set and create model out of the schema
 */
const User = dgraph.model(UserSchema);
 
/**
 * Creates a new user with passed fields
 * 
 * Returns the created user along with the generated uid
 */
const user = await User.create({
  name: 'Ashok Vishwakarma',
  email: 'akvlko@gmail.com',
  bio: 'My bio ...'
});
 
console.log(user);
// {
//    uid: '0x1',
//    name: 'Ashok Vishwakarma',
//    email: 'akvlko@gmail.com',
//    bio: 'My bio ...'
// }

For the full documentation please visit the below link

https://ashokvishwakarma.github.io/dgraph-orm

Futute releases

  • Other geo queries within, intersects
  • Group by
  • Aggregation

Contribution

Issues and pull requests are welcome for

  • Unit test cases
  • Feature and query method implementation
  • Bug fixes

Author

my_pic

Ashok Vishwakarma

LinkedInTwitterMedium

Package Sidebar

Install

npm i dgraph-orm

Weekly Downloads

2

Version

1.2.5

License

MIT

Unpacked Size

161 kB

Total Files

44

Last publish

Collaborators

  • ashokvishwakarma