From 3a40b5104f7523ed6a87e58d93c321ab0d3de280 Mon Sep 17 00:00:00 2001 From: Moriz Wahl Date: Mon, 16 Aug 2021 18:23:38 +0200 Subject: [PATCH] gdt transaction list is working --- backend/src/graphql/models/GdtEntry.ts | 1 - frontend/src/graphql/queries.js | 1 - 2 files changed, 2 deletions(-) diff --git a/backend/src/graphql/models/GdtEntry.ts b/backend/src/graphql/models/GdtEntry.ts index 014195fcd..dd86b758a 100644 --- a/backend/src/graphql/models/GdtEntry.ts +++ b/backend/src/graphql/models/GdtEntry.ts @@ -15,7 +15,6 @@ export enum GdtEntryType { @ObjectType() export class GdtEntry { constructor(json: any) { - this.transactionId = json.transaction_id this.amount = json.amount this.date = json.date this.email = json.email diff --git a/frontend/src/graphql/queries.js b/frontend/src/graphql/queries.js index efcdefae2..3afe807f4 100644 --- a/frontend/src/graphql/queries.js +++ b/frontend/src/graphql/queries.js @@ -129,7 +129,6 @@ export const listGDTEntriesQuery = gql` listGDTEntries(currentPage: $currentPage, pageSize: $pageSize, sessionId: $sessionId) { count gdtEntries { - transactionId amount date comment