Files
photoview/api/graphql/resolvers/timeline.graphql
2024-11-02 17:05:29 +01:00

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
}