Releasing Dgraph, distributed graph database: v0.3


Features

  • Dgraph now supports first: N argument. Note that N can be negative, to retrieve the last N results.
    Example:
{
  me(_xid_: m.06pj8) {
    film.director.film (first: 10) {
      type.object.name.en
      film.film.starring (first: -5) {
        film.performance.actor {
          type.object.name.en
        }
      }
    }
  }
}
  • Dgraph now supports queries and mutations over binary protocol (Protocol Buffer) via grpc.io. We observed significant improvements in the conversion time from Flatbuffers to Protocol Buffer compared to Flatbuffers to JSON. Blog post to follow.

Contact

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.