mirror of
https://github.com/stashapp/stash.git
synced 2025-12-10 10:22:18 +01:00
* Add counter to File Info where file count > 1 * Add file modification time to File Info panel * Remove duplicate intl keys * Add file count to duplicate checker Co-authored-by: WithoutPants <53250216+WithoutPants@users.noreply.github.com>
46 lines
No EOL
479 B
GraphQL
46 lines
No EOL
479 B
GraphQL
fragment FolderData on Folder {
|
|
id
|
|
path
|
|
}
|
|
|
|
fragment VideoFileData on VideoFile {
|
|
id
|
|
path
|
|
size
|
|
mod_time
|
|
duration
|
|
video_codec
|
|
audio_codec
|
|
width
|
|
height
|
|
frame_rate
|
|
bit_rate
|
|
fingerprints {
|
|
type
|
|
value
|
|
}
|
|
}
|
|
|
|
fragment ImageFileData on ImageFile {
|
|
id
|
|
path
|
|
size
|
|
mod_time
|
|
width
|
|
height
|
|
fingerprints {
|
|
type
|
|
value
|
|
}
|
|
}
|
|
|
|
fragment GalleryFileData on GalleryFile {
|
|
id
|
|
path
|
|
size
|
|
mod_time
|
|
fingerprints {
|
|
type
|
|
value
|
|
}
|
|
} |