Update some metadata for the photo category page

This commit is contained in:
itsfinniii
2026-04-03 22:33:41 +02:00
parent aa93600c79
commit 32c698c39a
7 changed files with 51 additions and 16 deletions

View File

@@ -0,0 +1,17 @@
query getAllCategories($url: String!) {
Photo_Categories(filter: { status: { _eq: "published" }, url: { _eq: $url } }) {
id,
date_created,
date_updated,
status,
title,
url,
thumbnail {
id,
created_on,
filename_disk,
width,
height
}
}
}