18 lines
368 B
GraphQL
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
|
|
}
|
|
}
|
|
}
|