Sha256: 15b9da30529fc96a74bd4a97b0e63e2fd1b7fe5903ddb0dba44ab95d7a4ec0d4
Contents?: true
Size: 458 Bytes
Versions: 7
Compression:
Stored size: 458 Bytes
Contents
# frozen_string_literal: true module Decidim module Api # This type represents a localized string in a single language. LocalizedStringType = GraphQL::ObjectType.define do name "LocalizedString" description "Represents a particular translation of a LocalizedStringType" field :locale, !types.String, "The standard locale of this translation." field :text, types.String, "The content of this translation." end end end
Version data entries
7 entries across 7 versions & 2 rubygems