34 lines
537 B
GraphQL
34 lines
537 B
GraphQL
query GetHomepage($locale: String!) {
|
|
homepage {
|
|
id
|
|
carousel {
|
|
id
|
|
directus_files_id {
|
|
id
|
|
}
|
|
}
|
|
recommend_products {
|
|
id
|
|
translations(filter: { languages_code: { code: { _eq: $locale } } }) {
|
|
id
|
|
name
|
|
summary
|
|
}
|
|
cover {
|
|
id
|
|
}
|
|
}
|
|
recommend_solutions {
|
|
id
|
|
translations(filter: { languages_code: { code: { _eq: $locale } } }) {
|
|
id
|
|
title
|
|
summary
|
|
}
|
|
cover {
|
|
id
|
|
}
|
|
}
|
|
}
|
|
}
|