Restored rudimentary tag filtering.

This commit is contained in:
2020-01-30 23:41:10 +01:00
parent eb9bc4677e
commit 42f227c39d
5 changed files with 36 additions and 1 deletions

View File

@@ -11,6 +11,7 @@ function initSitesActions(store, _router) {
$after:Date = "1900-01-01",
$before:Date = "2100-01-01",
$orderBy:[ReleasesOrderBy!]
$exclude: [String!]
) {
site: siteBySlug(slug: $siteSlug) {
name
@@ -38,6 +39,7 @@ function initSitesActions(store, _router) {
after: store.getters.after,
before: store.getters.before,
orderBy: store.state.ui.range === 'upcoming' ? 'DATE_ASC' : 'DATE_DESC',
exclude: store.state.ui.filter,
});
return curateSite(site);