mirror of
https://github.com/stashapp/stash.git
synced 2025-12-13 11:52:46 +01:00
* Add interface to load tags by id * Use minimal data for tag select queries * Center image/text in select list * Overhaul tag select * Support excludeIds. Comment out image in dropdown * Replace existing selects * Remove unused code * Fix styling of aliases
63 lines
760 B
GraphQL
63 lines
760 B
GraphQL
query MarkerStrings($q: String, $sort: String) {
|
|
markerStrings(q: $q, sort: $sort) {
|
|
id
|
|
count
|
|
title
|
|
}
|
|
}
|
|
|
|
query AllStudiosForFilter {
|
|
allStudios {
|
|
id
|
|
name
|
|
aliases
|
|
}
|
|
}
|
|
|
|
query AllMoviesForFilter {
|
|
allMovies {
|
|
id
|
|
name
|
|
}
|
|
}
|
|
|
|
query Stats {
|
|
stats {
|
|
scene_count
|
|
scenes_size
|
|
scenes_duration
|
|
image_count
|
|
images_size
|
|
gallery_count
|
|
performer_count
|
|
studio_count
|
|
movie_count
|
|
tag_count
|
|
total_o_count
|
|
total_play_duration
|
|
total_play_count
|
|
scenes_played
|
|
}
|
|
}
|
|
|
|
query Logs {
|
|
logs {
|
|
...LogEntryData
|
|
}
|
|
}
|
|
query Version {
|
|
version {
|
|
version
|
|
hash
|
|
build_time
|
|
}
|
|
}
|
|
|
|
query LatestVersion {
|
|
latestversion {
|
|
version
|
|
shorthash
|
|
release_date
|
|
url
|
|
}
|
|
}
|