Socket
Socket
Sign inDemoInstall

dgraph-js-extras

Package Overview
Dependencies
Maintainers
1
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dgraph-js-extras - npm Package Compare versions

Comparing version 0.6.2 to 0.6.3

10

CHANGELOG.md

@@ -0,1 +1,11 @@

<a name="0.6.3"></a>
## [0.6.3](https://github.com/vespertilian/dgraph-js-extras/compare/v0.6.2...v0.6.3) (2019-01-21)
### Features
* **docker-compose.test.yml get-schema-map.ts:** update to the latest version of dgraph v1.0.11 ([c7d5ca6](https://github.com/vespertilian/dgraph-js-extras/commit/c7d5ca6))
<a name="0.6.2"></a>

@@ -2,0 +12,0 @@ ## [0.6.2](https://github.com/vespertilian/dgraph-js-extras/compare/v0.6.1...v0.6.2) (2018-10-18)

4

lib/get-schema-map/get-schema-map.js

@@ -52,3 +52,5 @@ "use strict";

// only return predicates we created
if (predicate !== '_predicate_') {
// they don't contain _predicate_ and also dont include dgraph. (namespaces)
// dgraph namespaces include ACL and password fields
if (predicate !== '_predicate_' && !predicate.includes('dgraph.')) {
accumulator[predicate] = schemaNode;

@@ -55,0 +57,0 @@ }

{
"name": "dgraph-js-extras",
"version": "0.6.2",
"version": "0.6.3",
"description": "Functions to use with dgraph",

@@ -5,0 +5,0 @@ "main": "lib/index.js",

@@ -26,3 +26,5 @@ import * as dgraph from 'dgraph-js'

// only return predicates we created
if(predicate !== '_predicate_') {
// they don't contain _predicate_ and also dont include dgraph. (namespaces)
// dgraph namespaces include ACL and password fields
if(predicate !== '_predicate_' && !predicate.includes('dgraph.')) {
accumulator[predicate] = schemaNode;

@@ -29,0 +31,0 @@ }

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc