Getting last showcased batch for new label.

This commit is contained in:
DebaucheryLibrarian 2023-07-25 05:17:30 +02:00
parent d1b54dc2c5
commit ba376fa074
1 changed files with 5 additions and 1 deletions

View File

@ -673,7 +673,11 @@ const releaseFragment = `
`;
const batchFragment = `
batches(first: 1, orderBy: CREATED_AT_DESC) {
batches(
first: 1,
orderBy: CREATED_AT_DESC,
filter: { showcased: { equalTo: true } }
) {
id
}
`;