datacite/schnauzer

View on GitHub
app/graphql/types/text_language_type.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

class TextLanguageType < BaseObject
  description "Information"
  
  field :language, String, null: true, description: "Language"
  field :text, String, null: false, description: "Information"
end