mirror of
https://git.vectorsigma.ru/public/photoview.git
synced 2026-08-03 22:09:20 +00:00
12 lines
307 B
GraphQL
12 lines
307 B
GraphQL
extend type Query {
|
|
"""
|
|
Get a list of media, ordered first by day, then by album if multiple media was found for the same day.
|
|
"""
|
|
myTimeline(
|
|
paginate: Pagination,
|
|
onlyFavorites: Boolean,
|
|
"Only fetch media that is older than this date"
|
|
fromDate: Time
|
|
): [Media!]! @isAuthorized
|
|
}
|