Files
website/astro/src/graphql/photos/getCategory.graphql
2026-04-03 22:33:41 +02:00

18 lines
368 B
GraphQL

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
}
}
}