stash/graphql/documents/data/file.graphql
WithoutPants ef9e138a2d
[Files Refactor] Object file management (#2790)
* Add Make Primary file function
* Add delete file functionality
2022-10-06 14:50:06 +11:00

43 lines
No EOL
446 B
GraphQL

fragment FolderData on Folder {
id
path
}
fragment VideoFileData on VideoFile {
id
path
size
duration
video_codec
audio_codec
width
height
frame_rate
bit_rate
fingerprints {
type
value
}
}
fragment ImageFileData on ImageFile {
id
path
size
width
height
fingerprints {
type
value
}
}
fragment GalleryFileData on GalleryFile {
id
path
size
fingerprints {
type
value
}
}