draft-publication-info
All checks were successful
Deploy on push / deploy (push) Successful in 46s

This commit is contained in:
2025-04-28 11:10:18 +03:00
parent ed71405082
commit f71fc7fde9
3 changed files with 40 additions and 10 deletions

View File

@@ -107,6 +107,12 @@ type Shout {
score: Float
}
type PublicationInfo {
id: Int!
slug: String!
published_at: Int
}
type Draft {
id: Int!
created_at: Int!
@@ -129,9 +135,9 @@ type Draft {
deleted_at: Int
updated_by: Author
deleted_by: Author
authors: [Author]
topics: [Topic]
authors: [Author]!
topics: [Topic]!
publication: PublicationInfo
}
type Stat {