mirror of
https://github.com/stashapp/stash.git
synced 2025-12-07 00:43:12 +01:00
* Backend support for studio URLs * FrontEnd addition * Support URLs in BulkStudioUpdate * Update tagger modal for URLs --------- Co-authored-by: WithoutPants <53250216+WithoutPants@users.noreply.github.com>
55 lines
770 B
GraphQL
55 lines
770 B
GraphQL
fragment StudioData on Studio {
|
|
id
|
|
name
|
|
url
|
|
urls
|
|
parent_studio {
|
|
id
|
|
name
|
|
url
|
|
urls
|
|
image_path
|
|
}
|
|
child_studios {
|
|
id
|
|
name
|
|
image_path
|
|
}
|
|
ignore_auto_tag
|
|
image_path
|
|
scene_count
|
|
scene_count_all: scene_count(depth: -1)
|
|
image_count
|
|
image_count_all: image_count(depth: -1)
|
|
gallery_count
|
|
gallery_count_all: gallery_count(depth: -1)
|
|
performer_count
|
|
performer_count_all: performer_count(depth: -1)
|
|
group_count
|
|
group_count_all: group_count(depth: -1)
|
|
stash_ids {
|
|
stash_id
|
|
endpoint
|
|
updated_at
|
|
}
|
|
details
|
|
rating100
|
|
favorite
|
|
aliases
|
|
tags {
|
|
...SlimTagData
|
|
}
|
|
}
|
|
|
|
fragment SelectStudioData on Studio {
|
|
id
|
|
name
|
|
aliases
|
|
details
|
|
image_path
|
|
|
|
parent_studio {
|
|
id
|
|
name
|
|
}
|
|
}
|