How to use the gremlin.EdgeWrapper function in gremlin

To help you get started, we’ve selected a few gremlin examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github inolen / titan-node / lib / titan-edge-wrapper.js View on Github external
'use strict';

var util = require('util');
var Gremlin = require('gremlin');

var TitanEdgeWrapper = module.exports = function (gremlin, el) {
  Gremlin.EdgeWrapper.call(this, gremlin, el);
};

util.inherits(TitanEdgeWrapper, Gremlin.EdgeWrapper);
github inolen / titan-node / lib / titan-edge-wrapper.js View on Github external
var TitanEdgeWrapper = module.exports = function (gremlin, el) {
  Gremlin.EdgeWrapper.call(this, gremlin, el);
};