Fix rating in SceneCreateInput graphql schema (#3137)

* Fix rating in SceneCreateInput graphql schema
* Fix rating not set at creation

Co-authored-by: WithoutPants <53250216+WithoutPants@users.noreply.github.com>
This commit is contained in:
bnkai
2022-11-16 23:22:11 +02:00
committed by GitHub
parent 0443439fae
commit ffca8f0c0f
3 changed files with 25 additions and 2 deletions

View File

@@ -85,7 +85,10 @@ input SceneCreateInput {
director: String
url: String
date: String
rating: Int
# rating expressed as 1-5
rating: Int @deprecated(reason: "Use 1-100 range with rating100")
# rating expressed as 1-100
rating100: Int
organized: Boolean
studio_id: ID
gallery_ids: [ID!]