author-invitee-fix
All checks were successful
deploy / deploy (push) Successful in 2m8s

This commit is contained in:
2023-11-28 13:55:05 +03:00
parent 0240005ed1
commit a21efb99df
3 changed files with 27 additions and 10 deletions

View File

@@ -36,6 +36,14 @@ enum FollowingEntity {
REACTIONS
}
enum InviteStatus {
PENDING
ACCEPTED
REJECTED
}
# Типы
@@ -173,6 +181,14 @@ type Topic {
oid: String
}
type Invite {
id: Int!
inviter_id: Int!
author_id: Int!
shout_id: Int!
status: InviteStatus
}
# Входные типы
input ShoutInput {
@@ -288,6 +304,7 @@ type Result {
communities: [Community]
}
# Мутации
type Mutation {