LocalizedString
A representation of a string which can be of a specific language
Often used in a list where there can be multiple languages
type LocalizedString {
language: String!
value: String!
}
Fields
language ● String!
The language of the string
value ● String!
The value of the string
Example
{
"language": "EN",
"value": "String"
}