Fix eslint

This commit is contained in:
Robert Schäfer 2019-01-02 16:01:25 +01:00
parent 0185f743e8
commit d98a05a476
3 changed files with 9 additions and 8 deletions

View File

@ -5,6 +5,7 @@ import { HttpLink } from 'apollo-link-http'
import { InMemoryCache } from 'apollo-cache-inmemory' import { InMemoryCache } from 'apollo-cache-inmemory'
import neo4j from '../../bootstrap/neo4j' import neo4j from '../../bootstrap/neo4j'
import { query } from '../../graphql-schema' import { query } from '../../graphql-schema'
import fetch from 'node-fetch'
dotenv.config() dotenv.config()
@ -21,7 +22,7 @@ const driver = neo4j().getDriver()
const session = driver.session() const session = driver.session()
const builders = { const builders = {
"user": require('./users.js').default, 'user': require('./users.js').default
} }
const buildMutation = (model, parameters) => { const buildMutation = (model, parameters) => {