mirror of
https://github.com/stashapp/stash.git
synced 2025-12-06 08:26:00 +01:00
17 lines
725 B
Go
17 lines
725 B
Go
package graphql
|
|
|
|
import "github.com/99designs/gqlgen/graphql"
|
|
|
|
// Override for generated struct due to mistaken omitempty
|
|
// https://github.com/Yamashou/gqlgenc/issues/77
|
|
type SceneDraftInput struct {
|
|
Title *string `json:"title,omitempty"`
|
|
Details *string `json:"details,omitempty"`
|
|
URL *string `json:"url,omitempty"`
|
|
Date *string `json:"date,omitempty"`
|
|
Studio *DraftEntityInput `json:"studio,omitempty"`
|
|
Performers []*DraftEntityInput `json:"performers"`
|
|
Tags []*DraftEntityInput `json:"tags,omitempty"`
|
|
Image *graphql.Upload `json:"image,omitempty"`
|
|
Fingerprints []*FingerprintInput `json:"fingerprints"`
|
|
}
|