Fix plugin go examples (#2396)

This commit is contained in:
bnkai
2022-03-24 02:03:32 +02:00
committed by GitHub
parent 0cd9a0a474
commit 627c1e9c60
3 changed files with 10 additions and 7 deletions

View File

@@ -29,8 +29,8 @@ type TagDestroyInput struct {
type FindScenesResultType struct {
Count graphql.Int
DurationSeconds graphql.Float
FilesizeBytes graphql.Int
DurationSeconds graphql.Float `graphql:"duration" json:"duration"`
FilesizeBytes graphql.Float `graphql:"filesize" json:"filesize"`
Scenes []Scene
}