save topics

This commit is contained in:
bniwredyc
2023-05-11 13:03:14 +02:00
parent cbb64af17f
commit 96cf3e26c0
2 changed files with 55 additions and 5 deletions

View File

@@ -99,9 +99,9 @@ input ShoutInput {
title: String
body: String
authors: [String]
topics: [String]
topics: [TopicInput]
community: Int
mainTopic: String
mainTopic: TopicInput
subtitle: String
cover: String
}
@@ -116,8 +116,9 @@ input ProfileInput {
}
input TopicInput {
id: Int,
slug: String!
community: String!
# community: String!
title: String
body: String
pic: String
@@ -480,7 +481,7 @@ type Topic {
title: String
body: String
pic: String
community: Community!
# community: Community!
stat: TopicStat
oid: String
}