mirror of
https://github.com/stashapp/stash.git
synced 2025-12-11 02:42:43 +01:00
* Add updated_at field to stash_id's * Only set updated at on stash ids when actually updating in identify --------- Co-authored-by: WithoutPants <53250216+WithoutPants@users.noreply.github.com>
45 lines
543 B
GraphQL
45 lines
543 B
GraphQL
fragment SlimPerformerData on Performer {
|
|
id
|
|
name
|
|
disambiguation
|
|
gender
|
|
urls
|
|
image_path
|
|
favorite
|
|
ignore_auto_tag
|
|
country
|
|
birthdate
|
|
ethnicity
|
|
hair_color
|
|
eye_color
|
|
height_cm
|
|
fake_tits
|
|
penis_length
|
|
circumcised
|
|
career_length
|
|
tattoos
|
|
piercings
|
|
alias_list
|
|
tags {
|
|
id
|
|
name
|
|
}
|
|
stash_ids {
|
|
endpoint
|
|
stash_id
|
|
updated_at
|
|
}
|
|
rating100
|
|
death_date
|
|
weight
|
|
}
|
|
|
|
fragment SelectPerformerData on Performer {
|
|
id
|
|
name
|
|
disambiguation
|
|
alias_list
|
|
image_path
|
|
birthdate
|
|
death_date
|
|
}
|