mirror of
https://github.com/stashapp/stash.git
synced 2025-12-06 16:34:02 +01:00
* Add types to graphql scalars * Upgrade dependencies * Override UI config type * Remove all IUIConfig casts * Add tableColumns to IUIConfig * Add BoolMap type, set strictScalars * Add PluginConfigMap * Replace any with unknown * Add SavedObjectFilter and SavedUIOptions * Remove unused items from CriterionType
88 lines
970 B
GraphQL
88 lines
970 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
|
|
}
|
|
}
|
|
|
|
fragment VisualFileData on VisualFile {
|
|
... on BaseFile {
|
|
id
|
|
path
|
|
size
|
|
mod_time
|
|
fingerprints {
|
|
type
|
|
value
|
|
}
|
|
}
|
|
... on ImageFile {
|
|
id
|
|
path
|
|
size
|
|
mod_time
|
|
width
|
|
height
|
|
fingerprints {
|
|
type
|
|
value
|
|
}
|
|
}
|
|
... on VideoFile {
|
|
id
|
|
path
|
|
size
|
|
mod_time
|
|
duration
|
|
video_codec
|
|
audio_codec
|
|
width
|
|
height
|
|
frame_rate
|
|
bit_rate
|
|
fingerprints {
|
|
type
|
|
value
|
|
}
|
|
}
|
|
}
|