From 2b634b870631bd8956175358557e856de400025e Mon Sep 17 00:00:00 2001 From: ogerly Date: Wed, 21 Aug 2019 12:50:30 +0200 Subject: [PATCH] BUGFIX: 'email' attribute is the ID --- backend/src/schema/types/type/EmailAddress.gql | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/backend/src/schema/types/type/EmailAddress.gql b/backend/src/schema/types/type/EmailAddress.gql index 0516d72c4..4bf8ff724 100644 --- a/backend/src/schema/types/type/EmailAddress.gql +++ b/backend/src/schema/types/type/EmailAddress.gql @@ -1,6 +1,5 @@ type EmailAddress { - id: ID! - email: String! + email: ID! verifiedAt: String createdAt: String }