featured-id-patch
All checks were successful
Deploy to core / deploy (push) Successful in 1m40s

This commit is contained in:
2024-02-02 15:03:44 +03:00
parent bd5f910f8c
commit c00361b2ec
19 changed files with 640 additions and 798 deletions

46
schema/enum.graphql Normal file
View File

@@ -0,0 +1,46 @@
enum ShoutVisibility {
AUTHORS
COMMUNITY
FEATURED
}
enum ReactionStatus {
NEW
UPDATED
CHANGED
EXPLAINED
DELETED
}
enum ReactionKind {
# collabs
AGREE
DISAGREE
ASK
PROPOSE
PROOF
DISPROOF
ACCEPT
REJECT
# public feed
QUOTE
COMMENT
LIKE
DISLIKE
}
enum FollowingEntity {
TOPIC
AUTHOR
COMMUNITY
REACTIONS
}
enum InviteStatus {
PENDING
ACCEPTED
REJECTED
}