mirror of https://gitee.com/bigwinds/arangodb
9 lines
427 B
JavaScript
9 lines
427 B
JavaScript
'use strict';
|
|
|
|
var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
|
|
|
|
var gql = require('graphql');
|
|
module.exports = _extends({}, gql, {
|
|
graphql: require('./graphql').graphql,
|
|
execute: require('./execution').execute
|
|
}); |