diff --git a/graphql/schema/types/movie.graphql b/graphql/schema/types/movie.graphql index 0b41af0c8..cc25b9e02 100644 --- a/graphql/schema/types/movie.graphql +++ b/graphql/schema/types/movie.graphql @@ -28,8 +28,9 @@ input MovieCreateInput { director: String synopsis: String url: String - """This should be base64 encoded""" + """This should be a URL or a base64 encoded data URL""" front_image: String + """This should be a URL or a base64 encoded data URL""" back_image: String } @@ -44,8 +45,9 @@ input MovieUpdateInput { director: String synopsis: String url: String - """This should be base64 encoded""" + """This should be a URL or a base64 encoded data URL""" front_image: String + """This should be a URL or a base64 encoded data URL""" back_image: String } diff --git a/graphql/schema/types/performer.graphql b/graphql/schema/types/performer.graphql index 1324f4f81..e9ea68519 100644 --- a/graphql/schema/types/performer.graphql +++ b/graphql/schema/types/performer.graphql @@ -54,7 +54,7 @@ input PerformerCreateInput { instagram: String favorite: Boolean tag_ids: [ID!] - """This should be base64 encoded""" + """This should be a URL or a base64 encoded data URL""" image: String stash_ids: [StashIDInput!] } @@ -79,7 +79,7 @@ input PerformerUpdateInput { instagram: String favorite: Boolean tag_ids: [ID!] - """This should be base64 encoded""" + """This should be a URL or a base64 encoded data URL""" image: String stash_ids: [StashIDInput!] } diff --git a/graphql/schema/types/scene.graphql b/graphql/schema/types/scene.graphql index c72ae17ef..f37c0bfd9 100644 --- a/graphql/schema/types/scene.graphql +++ b/graphql/schema/types/scene.graphql @@ -67,7 +67,7 @@ input SceneUpdateInput { performer_ids: [ID!] movies: [SceneMovieInput!] tag_ids: [ID!] - """This should be base64 encoded""" + """This should be a URL or a base64 encoded data URL""" cover_image: String stash_ids: [StashIDInput!] } diff --git a/graphql/schema/types/scraped-movie.graphql b/graphql/schema/types/scraped-movie.graphql index ac221fb88..d1546dfb9 100644 --- a/graphql/schema/types/scraped-movie.graphql +++ b/graphql/schema/types/scraped-movie.graphql @@ -17,8 +17,9 @@ type ScrapedMovie { synopsis: String studio: ScrapedMovieStudio - """This should be base64 encoded""" + """This should be a base64 encoded data URL""" front_image: String + """This should be a base64 encoded data URL""" back_image: String } diff --git a/graphql/schema/types/scraped-performer.graphql b/graphql/schema/types/scraped-performer.graphql index eadc19160..9f4583600 100644 --- a/graphql/schema/types/scraped-performer.graphql +++ b/graphql/schema/types/scraped-performer.graphql @@ -19,7 +19,7 @@ type ScrapedPerformer { # Should be ScrapedPerformerTag - but would be identical types tags: [ScrapedSceneTag!] - """This should be base64 encoded""" + """This should be a base64 encoded data URL""" image: String } diff --git a/graphql/schema/types/scraper.graphql b/graphql/schema/types/scraper.graphql index 65a474600..929c13f2b 100644 --- a/graphql/schema/types/scraper.graphql +++ b/graphql/schema/types/scraper.graphql @@ -85,7 +85,7 @@ type ScrapedScene { url: String date: String - """This should be base64 encoded""" + """This should be a base64 encoded data URL""" image: String file: SceneFileType # Resolver diff --git a/graphql/schema/types/studio.graphql b/graphql/schema/types/studio.graphql index 051776e03..8eca28659 100644 --- a/graphql/schema/types/studio.graphql +++ b/graphql/schema/types/studio.graphql @@ -15,7 +15,7 @@ input StudioCreateInput { name: String! url: String parent_id: ID - """This should be base64 encoded""" + """This should be a URL or a base64 encoded data URL""" image: String stash_ids: [StashIDInput!] } @@ -25,7 +25,7 @@ input StudioUpdateInput { name: String url: String parent_id: ID, - """This should be base64 encoded""" + """This should be a URL or a base64 encoded data URL""" image: String stash_ids: [StashIDInput!] } diff --git a/graphql/schema/types/tag.graphql b/graphql/schema/types/tag.graphql index 2cb6765c8..2f1f0d0d5 100644 --- a/graphql/schema/types/tag.graphql +++ b/graphql/schema/types/tag.graphql @@ -11,7 +11,7 @@ type Tag { input TagCreateInput { name: String! - """This should be base64 encoded""" + """This should be a URL or a base64 encoded data URL""" image: String } @@ -19,7 +19,7 @@ input TagUpdateInput { id: ID! name: String! - """This should be base64 encoded""" + """This should be a URL or a base64 encoded data URL""" image: String }