diff --git a/backend/src/graphql/enum/TransactionType.ts b/backend/src/graphql/enum/TransactionType.ts deleted file mode 100644 index 2b6fc44d1..000000000 --- a/backend/src/graphql/enum/TransactionType.ts +++ /dev/null @@ -1,12 +0,0 @@ -import { registerEnumType } from 'type-graphql' - -export enum TransactionType { - CREATION = 'creation', - SEND = 'send', - RECIEVE = 'receive', -} - -registerEnumType(TransactionType, { - name: 'TransactionType', // this one is mandatory - description: 'Name of the Type of the transaction', // this one is optional -})