10 lines
181 B
GraphQL
10 lines
181 B
GraphQL
query GetCompanyProfile($locale: String!) {
|
|
company_profile {
|
|
id
|
|
translations(filter: { languages_code: { code: { _eq: $locale } } }) {
|
|
id
|
|
content
|
|
}
|
|
}
|
|
}
|