35 lines
655 B
TypeScript
35 lines
655 B
TypeScript
import Context from '../../types/express/context';
|
|
|
|
type Params = {
|
|
input: {
|
|
id: string;
|
|
};
|
|
};
|
|
|
|
const resetConnection = async (
|
|
_parent: unknown,
|
|
params: Params,
|
|
context: Context
|
|
) => {
|
|
context.currentUser.can('create', 'Connection');
|
|
|
|
let connection = await context.currentUser
|
|
.$relatedQuery('connections')
|
|
.findOne({
|
|
id: params.input.id,
|
|
})
|
|
.throwIfNotFound();
|
|
|
|
if (!connection.formattedData) {
|
|
return null;
|
|
}
|
|
|
|
connection = await connection.$query().patchAndFetch({
|
|
formattedData: { screenName: connection.formattedData.screenName },
|
|
});
|
|
|
|
return connection;
|
|
};
|
|
|
|
export default resetConnection;
|