28 lines
584 B
GraphQL
28 lines
584 B
GraphQL
query GetQuestionList($locale: String!) {
|
|
questions(filter: { status: { _eq: "published" } }) {
|
|
id
|
|
translations(filter: { languages_code: { code: { _eq: $locale } } }) {
|
|
id
|
|
title
|
|
content
|
|
}
|
|
products {
|
|
id
|
|
products_id {
|
|
id
|
|
product_type {
|
|
id
|
|
translations(filter: { languages_code: { code: { _eq: $locale } } }) {
|
|
id
|
|
name
|
|
}
|
|
}
|
|
translations(filter: { languages_code: { code: { _eq: $locale } } }) {
|
|
id
|
|
name
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|