From d370f106e09d05c0304e983b0e8a365b400293fd Mon Sep 17 00:00:00 2001 From: Moriz Wahl Date: Tue, 7 Mar 2023 17:53:24 +0100 Subject: [PATCH] remove admin creationTransactionList --- admin/src/graphql/creationTransactionList.js | 23 -------------------- 1 file changed, 23 deletions(-) delete mode 100644 admin/src/graphql/creationTransactionList.js diff --git a/admin/src/graphql/creationTransactionList.js b/admin/src/graphql/creationTransactionList.js deleted file mode 100644 index fc3a80b18..000000000 --- a/admin/src/graphql/creationTransactionList.js +++ /dev/null @@ -1,23 +0,0 @@ -import gql from 'graphql-tag' - -export const creationTransactionList = gql` - query ($currentPage: Int = 1, $pageSize: Int = 25, $order: Order = DESC, $userId: Int!) { - creationTransactionList( - currentPage: $currentPage - pageSize: $pageSize - order: $order - userId: $userId - ) { - contributionCount - contributionList { - id - amount - createdAt - confirmedAt - contributionDate - memo - state - } - } - } -`