mirror of
https://github.com/stashapp/stash.git
synced 2025-12-09 18:04:33 +01:00
Update various GQL image fields' comments (#1271)
This commit is contained in:
parent
72b027a887
commit
d8ba4a08c0
8 changed files with 15 additions and 12 deletions
|
|
@ -28,8 +28,9 @@ input MovieCreateInput {
|
||||||
director: String
|
director: String
|
||||||
synopsis: String
|
synopsis: String
|
||||||
url: String
|
url: String
|
||||||
"""This should be base64 encoded"""
|
"""This should be a URL or a base64 encoded data URL"""
|
||||||
front_image: String
|
front_image: String
|
||||||
|
"""This should be a URL or a base64 encoded data URL"""
|
||||||
back_image: String
|
back_image: String
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -44,8 +45,9 @@ input MovieUpdateInput {
|
||||||
director: String
|
director: String
|
||||||
synopsis: String
|
synopsis: String
|
||||||
url: String
|
url: String
|
||||||
"""This should be base64 encoded"""
|
"""This should be a URL or a base64 encoded data URL"""
|
||||||
front_image: String
|
front_image: String
|
||||||
|
"""This should be a URL or a base64 encoded data URL"""
|
||||||
back_image: String
|
back_image: String
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -54,7 +54,7 @@ input PerformerCreateInput {
|
||||||
instagram: String
|
instagram: String
|
||||||
favorite: Boolean
|
favorite: Boolean
|
||||||
tag_ids: [ID!]
|
tag_ids: [ID!]
|
||||||
"""This should be base64 encoded"""
|
"""This should be a URL or a base64 encoded data URL"""
|
||||||
image: String
|
image: String
|
||||||
stash_ids: [StashIDInput!]
|
stash_ids: [StashIDInput!]
|
||||||
}
|
}
|
||||||
|
|
@ -79,7 +79,7 @@ input PerformerUpdateInput {
|
||||||
instagram: String
|
instagram: String
|
||||||
favorite: Boolean
|
favorite: Boolean
|
||||||
tag_ids: [ID!]
|
tag_ids: [ID!]
|
||||||
"""This should be base64 encoded"""
|
"""This should be a URL or a base64 encoded data URL"""
|
||||||
image: String
|
image: String
|
||||||
stash_ids: [StashIDInput!]
|
stash_ids: [StashIDInput!]
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -67,7 +67,7 @@ input SceneUpdateInput {
|
||||||
performer_ids: [ID!]
|
performer_ids: [ID!]
|
||||||
movies: [SceneMovieInput!]
|
movies: [SceneMovieInput!]
|
||||||
tag_ids: [ID!]
|
tag_ids: [ID!]
|
||||||
"""This should be base64 encoded"""
|
"""This should be a URL or a base64 encoded data URL"""
|
||||||
cover_image: String
|
cover_image: String
|
||||||
stash_ids: [StashIDInput!]
|
stash_ids: [StashIDInput!]
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -17,8 +17,9 @@ type ScrapedMovie {
|
||||||
synopsis: String
|
synopsis: String
|
||||||
studio: ScrapedMovieStudio
|
studio: ScrapedMovieStudio
|
||||||
|
|
||||||
"""This should be base64 encoded"""
|
"""This should be a base64 encoded data URL"""
|
||||||
front_image: String
|
front_image: String
|
||||||
|
"""This should be a base64 encoded data URL"""
|
||||||
back_image: String
|
back_image: String
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -19,7 +19,7 @@ type ScrapedPerformer {
|
||||||
# Should be ScrapedPerformerTag - but would be identical types
|
# Should be ScrapedPerformerTag - but would be identical types
|
||||||
tags: [ScrapedSceneTag!]
|
tags: [ScrapedSceneTag!]
|
||||||
|
|
||||||
"""This should be base64 encoded"""
|
"""This should be a base64 encoded data URL"""
|
||||||
image: String
|
image: String
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -85,7 +85,7 @@ type ScrapedScene {
|
||||||
url: String
|
url: String
|
||||||
date: String
|
date: String
|
||||||
|
|
||||||
"""This should be base64 encoded"""
|
"""This should be a base64 encoded data URL"""
|
||||||
image: String
|
image: String
|
||||||
|
|
||||||
file: SceneFileType # Resolver
|
file: SceneFileType # Resolver
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,7 @@ input StudioCreateInput {
|
||||||
name: String!
|
name: String!
|
||||||
url: String
|
url: String
|
||||||
parent_id: ID
|
parent_id: ID
|
||||||
"""This should be base64 encoded"""
|
"""This should be a URL or a base64 encoded data URL"""
|
||||||
image: String
|
image: String
|
||||||
stash_ids: [StashIDInput!]
|
stash_ids: [StashIDInput!]
|
||||||
}
|
}
|
||||||
|
|
@ -25,7 +25,7 @@ input StudioUpdateInput {
|
||||||
name: String
|
name: String
|
||||||
url: String
|
url: String
|
||||||
parent_id: ID,
|
parent_id: ID,
|
||||||
"""This should be base64 encoded"""
|
"""This should be a URL or a base64 encoded data URL"""
|
||||||
image: String
|
image: String
|
||||||
stash_ids: [StashIDInput!]
|
stash_ids: [StashIDInput!]
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -11,7 +11,7 @@ type Tag {
|
||||||
input TagCreateInput {
|
input TagCreateInput {
|
||||||
name: String!
|
name: String!
|
||||||
|
|
||||||
"""This should be base64 encoded"""
|
"""This should be a URL or a base64 encoded data URL"""
|
||||||
image: String
|
image: String
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -19,7 +19,7 @@ input TagUpdateInput {
|
||||||
id: ID!
|
id: ID!
|
||||||
name: String!
|
name: String!
|
||||||
|
|
||||||
"""This should be base64 encoded"""
|
"""This should be a URL or a base64 encoded data URL"""
|
||||||
image: String
|
image: String
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue