From 3b056aacc167bef6baf160fb3618c3934cd2485d Mon Sep 17 00:00:00 2001 From: mattwr18 Date: Mon, 9 Sep 2019 16:58:49 +0200 Subject: [PATCH] Fix weird indentation issue with VS Code --- backend/src/schema/types/type/EMOTED.gql | 33 ++++++++++++------------ 1 file changed, 16 insertions(+), 17 deletions(-) diff --git a/backend/src/schema/types/type/EMOTED.gql b/backend/src/schema/types/type/EMOTED.gql index 9928c5741..ee1576517 100644 --- a/backend/src/schema/types/type/EMOTED.gql +++ b/backend/src/schema/types/type/EMOTED.gql @@ -1,28 +1,27 @@ type EMOTED @relation(name: "EMOTED") { - from: User - to: Post + from: User + to: Post - emotion: Emotion - # createdAt: DateTime - # updatedAt: DateTime - createdAt: String - updatedAt: String + emotion: Emotion + # createdAt: DateTime + # updatedAt: DateTime + createdAt: String + updatedAt: String } input _EMOTEDInput { - emotion: Emotion - createdAt: String - updatedAt: String + emotion: Emotion + createdAt: String + updatedAt: String } - input _PostEMOTEDFilter { - emotion_in: [Emotion] - createdAt: String - updatedAt: String + emotion_in: [Emotion] + createdAt: String + updatedAt: String } type Mutation { - AddPostEmotions(to: _PostInput!, data: _EMOTEDInput!): EMOTED - RemovePostEmotions(to: _PostInput!, data: _EMOTEDInput!): EMOTED -} \ No newline at end of file + AddPostEmotions(to: _PostInput!, data: _EMOTEDInput!): EMOTED + RemovePostEmotions(to: _PostInput!, data: _EMOTEDInput!): EMOTED +}