import Context from '../../types/express/context'; import axios from 'axios'; import globalVariable from '../../helpers/global-variable'; import App from '../../models/app'; type Params = { input: { id: string; }; }; const createAuthData = async ( _parent: unknown, params: Params, context: Context ) => { const connection = await context.currentUser .$relatedQuery('connections') .findOne({ id: params.input.id, }) .throwIfNotFound(); if (!connection.formattedData) { return null; } const authInstance = (await import(`../../apps/${connection.key}/auth`)) .default; const app = await App.findOneByKey(connection.key); const $ = await globalVariable(connection, app); await authInstance.createAuthData($); try { await axios.get(connection.formattedData.url as string); } catch (error) { throw new Error('Error occured while creating authorization URL!'); } return connection.formattedData; }; export default createAuthData;