drafts-fixes

This commit is contained in:
2023-02-20 18:32:32 +03:00
parent c1c193c55b
commit 9fb6c72dbe
2 changed files with 7 additions and 6 deletions

View File

@@ -69,7 +69,6 @@ type Result {
members: [ChatMember]
shout: Shout
shouts: [Shout]
drafts: [DraftCollab]
author: Author
authors: [Author]
reaction: Reaction
@@ -78,6 +77,8 @@ type Result {
topics: [Topic]
community: Community
communities: [Community]
draft: DraftCollab
drafts: [DraftCollab]
}
enum ReactionStatus {
@@ -207,6 +208,7 @@ type Mutation {
deleteDraft(draft: Int!): Result!
inviteAccept(draft: Int!): Result!
inviteAuthor(draft: Int!, author: Int!): Result!
draftToShout(draft: Int!): Result!
# following
follow(what: FollowingEntity!, slug: String!): Result!