Added 'independent' property for network-like channels. Changed release tile design. Adding Brazzers timeline events as tags. Added Property Sex to MindGeek. Changed DP, DAP and DVP tag slugs. Changed Porn Pros logo. Added better BAM Visions and Mug Fucked logos.
This commit is contained in:
@@ -32,6 +32,7 @@ function initEntitiesActions(store, _router) {
|
||||
name
|
||||
slug
|
||||
url
|
||||
independent
|
||||
hasLogo
|
||||
children: childEntitiesConnection(
|
||||
orderBy: [PRIORITY_DESC, NAME_ASC],
|
||||
@@ -52,6 +53,7 @@ function initEntitiesActions(store, _router) {
|
||||
slug
|
||||
type
|
||||
url
|
||||
independent
|
||||
hasLogo
|
||||
}
|
||||
}
|
||||
@@ -138,7 +140,6 @@ function initEntitiesActions(store, _router) {
|
||||
async function fetchEntities({ _commit }, { type, entitySlugs }) {
|
||||
const { entities } = await graphql(`
|
||||
query Entities(
|
||||
$type: String! = "network"
|
||||
$entitySlugs: [String!] = []
|
||||
) {
|
||||
entities(
|
||||
@@ -147,9 +148,20 @@ function initEntitiesActions(store, _router) {
|
||||
or: [
|
||||
{
|
||||
type: {
|
||||
equalTo: $type
|
||||
equalTo: "network"
|
||||
}
|
||||
}
|
||||
{
|
||||
independent: {
|
||||
equalTo: true
|
||||
}
|
||||
}
|
||||
{
|
||||
type: {
|
||||
equalTo: "channel"
|
||||
}
|
||||
parentExists: false
|
||||
}
|
||||
{
|
||||
slug: {
|
||||
in: $entitySlugs
|
||||
|
||||
@@ -5,12 +5,14 @@ const siteFragment = `
|
||||
slug
|
||||
url
|
||||
type
|
||||
independent
|
||||
parent {
|
||||
id
|
||||
name
|
||||
slug
|
||||
url
|
||||
type
|
||||
independent
|
||||
}
|
||||
}
|
||||
`;
|
||||
@@ -22,12 +24,14 @@ const sitesFragment = `
|
||||
slug
|
||||
url
|
||||
type
|
||||
independent
|
||||
parent {
|
||||
id
|
||||
name
|
||||
slug
|
||||
url
|
||||
type
|
||||
independent
|
||||
}
|
||||
}
|
||||
`;
|
||||
@@ -167,6 +171,7 @@ const releaseFields = `
|
||||
date
|
||||
slug
|
||||
type
|
||||
shootId
|
||||
createdAt
|
||||
url
|
||||
${releaseActorsFragment}
|
||||
|
||||
Reference in New Issue
Block a user