34 lines
757 B
TypeScript
34 lines
757 B
TypeScript
import App from '../../models/app';
|
|
import Context from '../../types/express/context';
|
|
|
|
type Params = {
|
|
key: string;
|
|
};
|
|
|
|
const getApp = async (_parent: unknown, params: Params, context: Context) => {
|
|
const app = await App.findOneByKey(params.key);
|
|
|
|
if (context.currentUser) {
|
|
const connections = await context.currentUser
|
|
.$relatedQuery('connections')
|
|
.select('connections.*')
|
|
.fullOuterJoinRelated('steps')
|
|
.where({
|
|
'connections.key': params.key,
|
|
'connections.draft': false,
|
|
})
|
|
.countDistinct('steps.flow_id as flowCount')
|
|
.groupBy('connections.id')
|
|
.orderBy('created_at', 'desc');
|
|
|
|
return {
|
|
...app,
|
|
connections,
|
|
};
|
|
}
|
|
|
|
return app;
|
|
};
|
|
|
|
export default getApp;
|