datacite/schnauzer

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

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

class IdentifierType < BaseObject
  description "Information about identifiers"

  field :name, String, null: true, description: "The name of the identifier."
  field :value, String, null: true, description: "The value of the identifier."
end