consul/consul

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

Summary

Maintainability
A
0 mins
Test Coverage
module Types
  class TagType < Types::BaseObject
    field :id, ID, null: false
    field :kind, String, null: true
    field :name, String, null: true
    field :taggings_count, Integer, null: true
  end
end