Added indeces on releases entity_id and studio_id, restored showcase query.

This commit is contained in:
DebaucheryLibrarian
2023-01-07 17:11:25 +01:00
parent 67f5ea9de8
commit f62a64c021
2 changed files with 28 additions and 9 deletions

View File

@@ -431,9 +431,22 @@ const releasesFragment = `
}
}
}
isShowcased: {
equalTo: true
}
or: [
{
entity: {
showcased: {
equalTo: true
}
}
}
{
studio: {
showcased: {
equalTo: true
}
}
}
]
},
first: $limit,
offset: $offset,