community input

This commit is contained in:
Tony Rewin 2021-11-26 03:41:20 +03:00
parent cefc6dfb5d
commit b489760617

View File

@ -41,6 +41,12 @@ input ProfileInput {
userpic: String
}
input CommunityInput {
title
desc
pic
}
type ShoutResult {
error: String
shout: Shout
@ -102,7 +108,7 @@ type Mutation {
rateComment(id: Int!, value: Int!): Result!
createCommunity(title: String!, desc: String!): Community!
updateCommunity(id: Int!, title: String!, desc: String!, pic: String!): Community!
updateCommunity(community: CommunityInput!): Community!
deleteCommunity(id: Int!): Result!
}