forked from DebaucheryLibrarian/traxxx
Added 'newly added' filter. Handling paywalled videos in Private scraper. Added shoot ID to search.
This commit is contained in:
@@ -52,6 +52,7 @@ function initActorActions(store, _router) {
|
||||
$limit:Int = 1000,
|
||||
$after:Date = "1900-01-01",
|
||||
$before:Date = "2100-01-01",
|
||||
$isNew:[Boolean!] = [true,false]
|
||||
$orderBy:[ReleasesActorsOrderBy!]
|
||||
$exclude: [String!]
|
||||
) {
|
||||
@@ -132,6 +133,9 @@ function initActorActions(store, _router) {
|
||||
}
|
||||
}
|
||||
}
|
||||
isNew: {
|
||||
in: $isNew
|
||||
}
|
||||
}
|
||||
},
|
||||
first: $limit,
|
||||
@@ -167,6 +171,7 @@ function initActorActions(store, _router) {
|
||||
limit,
|
||||
after: store.getters.after,
|
||||
before: store.getters.before,
|
||||
isNew: store.getters.isNew,
|
||||
orderBy: store.state.ui.range === 'upcoming' ? 'RELEASE_BY_RELEASE_ID__DATE_ASC' : 'RELEASE_BY_RELEASE_ID__DATE_DESC',
|
||||
exclude: store.state.ui.filter,
|
||||
});
|
||||
@@ -183,7 +188,6 @@ function initActorActions(store, _router) {
|
||||
if (actorSlug) {
|
||||
return fetchActorBySlug(actorSlug);
|
||||
}
|
||||
console.log(genders);
|
||||
|
||||
const { actors } = await graphql(`
|
||||
query Actors(
|
||||
|
||||
Reference in New Issue
Block a user