stash/ui/v2.5/graphql/data/gallery.graphql
Gykes 01d351c85d
FR: Custom Fields Frontend (#6601)
* Add "custom-field-" prefix to custom field detail item ids
---------
Co-authored-by: WithoutPants <53250216+WithoutPants@users.noreply.github.com>
2026-02-25 14:56:24 +11:00

68 lines
688 B
GraphQL

fragment GalleryData on Gallery {
id
created_at
updated_at
title
code
date
urls
details
photographer
rating100
organized
paths {
cover
preview
}
files {
...GalleryFileData
}
folder {
...FolderData
}
image_count
chapters {
...GalleryChapterData
}
studio {
...SlimStudioData
}
tags {
...SlimTagData
}
performers {
...PerformerData
}
scenes {
...SlimSceneData
}
custom_fields
}
fragment SelectGalleryData on Gallery {
id
title
date
code
studio {
name
}
cover {
paths {
thumbnail
}
}
paths {
preview
}
files {
path
}
folder {
path
}
}