stash/graphql/documents/data/gallery.graphql

31 lines
316 B
GraphQL
Raw Normal View History

2019-02-09 12:30:49 +00:00
fragment GalleryData on Gallery {
id
checksum
path
title
date
url
details
rating
organized
images {
...SlimImageData
}
cover {
...SlimImageData
}
studio {
...StudioData
}
tags {
...TagData
}
performers {
...PerformerData
2019-02-09 12:30:49 +00:00
}
2021-02-01 20:56:54 +00:00
scenes {
...SceneData
}
2019-02-09 12:30:49 +00:00
}