translation.graphql 398 B

1234567891011121314
  1. # Published translation of a field of a resource.
  2. type PublishedTranslation {
  3. # The resource field that is being translated.
  4. key: String!
  5. # The locale of this translation.
  6. locale: String!
  7. # The ID of the market that the translation is specific to. Null value means the translation is available in any market.
  8. marketId: ID
  9. # The translation value.
  10. value: String
  11. }