From b7876cc4549d43dda830aa0aa61de1d3466743a8 Mon Sep 17 00:00:00 2001 From: Julien Richard Date: Sat, 28 Sep 2024 19:11:07 +0200 Subject: [PATCH] [backend] Fix import --- opencti-platform/opencti-graphql/src/graphql/graphql.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/opencti-platform/opencti-graphql/src/graphql/graphql.js b/opencti-platform/opencti-graphql/src/graphql/graphql.js index ba4eecf141be..960b221a09b0 100644 --- a/opencti-platform/opencti-graphql/src/graphql/graphql.js +++ b/opencti-platform/opencti-graphql/src/graphql/graphql.js @@ -9,13 +9,11 @@ import { constraintDirectiveDocumentation } from 'graphql-constraint-directive'; import { GraphQLError } from 'graphql/error'; import { createApollo4QueryValidationPlugin } from 'graphql-constraint-directive/apollo4'; import createSchema from './schema'; -import conf, { basePath, DEV_MODE, ENABLED_TRACING, GRAPHQL_ARMOR_DISABLED, logApp, PLAYGROUND_ENABLED, PLAYGROUND_INTROSPECTION_DISABLED } from '../config/conf'; -import { authenticateUserFromRequest, userWithOrigin } from '../domain/user'; +import conf, { basePath, DEV_MODE, ENABLED_TRACING, GRAPHQL_ARMOR_DISABLED, PLAYGROUND_ENABLED, PLAYGROUND_INTROSPECTION_DISABLED } from '../config/conf'; import { ForbiddenAccess, ValidationError } from '../config/errors'; import loggerPlugin from './loggerPlugin'; import telemetryPlugin from './telemetryPlugin'; import httpResponsePlugin from './httpResponsePlugin'; -import { executionContext } from '../utils/access'; const createApolloServer = () => { let schema = createSchema();