13 lines
234 B
GraphQL
13 lines
234 B
GraphQL
query GetSolution($id: ID!, $locale: String!) {
|
|
solutions_by_id(id: $id) {
|
|
id
|
|
translations(filter: { languages_code: { code: { _eq: $locale } } }) {
|
|
id
|
|
title
|
|
summary
|
|
content
|
|
}
|
|
create_at
|
|
}
|
|
}
|