Update various GQL image fields' comments (#1271)

This commit is contained in:
peolic 2021-04-07 01:58:41 +03:00 committed by GitHub
parent 72b027a887
commit d8ba4a08c0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 15 additions and 12 deletions

View file

@ -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
}

View file

@ -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!]
}

View file

@ -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!]
}

View file

@ -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
}

View file

@ -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
}

View file

@ -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

View file

@ -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!]
}

View file

@ -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
}