This commit is contained in:
Untone 2021-09-01 16:55:42 +03:00
parent eba8e6d6af
commit a8d3ffd5e6

View File

@ -157,10 +157,10 @@ type User {
links: [String] links: [String]
emailConfirmed: Boolean # should contain all emails too # TODO: pagination here emailConfirmed: Boolean # should contain all emails too # TODO: pagination here
muted: Boolean muted: Boolean
rating: Int
roles: [Role] roles: [Role]
updatedAt: DateTime updatedAt: DateTime
wasOnlineAt: DateTime wasOnlineAt: DateTime
rating: Int
ratings: [Rating] ratings: [Rating]
bio: String bio: String
notifications: [Int] notifications: [Int]
@ -203,7 +203,7 @@ type Shout {
versionOf: String versionOf: String
visibleForRoles: [String] # role ids are strings visibleForRoles: [String] # role ids are strings
visibleForUsers: [Int] visibleForUsers: [Int]
view: Int views: Int
old_id: String old_id: String
} }