From afe61ce4a260a1f4bd1951ae0521787e9e39feb2 Mon Sep 17 00:00:00 2001 From: Alina Beck Date: Mon, 29 Jul 2019 22:51:11 +0200 Subject: [PATCH] add social media back into user schema --- backend/src/schema/types/type/User.gql | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/src/schema/types/type/User.gql b/backend/src/schema/types/type/User.gql index 75afa9cdf..2534463d1 100644 --- a/backend/src/schema/types/type/User.gql +++ b/backend/src/schema/types/type/User.gql @@ -17,6 +17,7 @@ type User { location: Location @cypher(statement: "MATCH (this)-[:IS_IN]->(l:Location) RETURN l") locationName: String about: String + socialMedia: [SocialMedia]! @relation(name: "OWNED_BY", direction: "OUT") #createdAt: DateTime #updatedAt: DateTime