Fix weird indentation issue with VS Code

This commit is contained in:
mattwr18 2019-09-09 16:58:49 +02:00
parent 86d80c689c
commit 3b056aacc1

View File

@ -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
}
AddPostEmotions(to: _PostInput!, data: _EMOTEDInput!): EMOTED
RemovePostEmotions(to: _PostInput!, data: _EMOTEDInput!): EMOTED
}