mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2025-12-13 07:45:56 +00:00
Fix weird indentation issue with VS Code
This commit is contained in:
parent
86d80c689c
commit
3b056aacc1
@ -1,28 +1,27 @@
|
|||||||
type EMOTED @relation(name: "EMOTED") {
|
type EMOTED @relation(name: "EMOTED") {
|
||||||
from: User
|
from: User
|
||||||
to: Post
|
to: Post
|
||||||
|
|
||||||
emotion: Emotion
|
emotion: Emotion
|
||||||
# createdAt: DateTime
|
# createdAt: DateTime
|
||||||
# updatedAt: DateTime
|
# updatedAt: DateTime
|
||||||
createdAt: String
|
createdAt: String
|
||||||
updatedAt: String
|
updatedAt: String
|
||||||
}
|
}
|
||||||
|
|
||||||
input _EMOTEDInput {
|
input _EMOTEDInput {
|
||||||
emotion: Emotion
|
emotion: Emotion
|
||||||
createdAt: String
|
createdAt: String
|
||||||
updatedAt: String
|
updatedAt: String
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
input _PostEMOTEDFilter {
|
input _PostEMOTEDFilter {
|
||||||
emotion_in: [Emotion]
|
emotion_in: [Emotion]
|
||||||
createdAt: String
|
createdAt: String
|
||||||
updatedAt: String
|
updatedAt: String
|
||||||
}
|
}
|
||||||
|
|
||||||
type Mutation {
|
type Mutation {
|
||||||
AddPostEmotions(to: _PostInput!, data: _EMOTEDInput!): EMOTED
|
AddPostEmotions(to: _PostInput!, data: _EMOTEDInput!): EMOTED
|
||||||
RemovePostEmotions(to: _PostInput!, data: _EMOTEDInput!): EMOTED
|
RemovePostEmotions(to: _PostInput!, data: _EMOTEDInput!): EMOTED
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user