consul/consul

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

Summary

Maintainability
A
0 mins
Test Coverage
module Types
  class ProposalType < Types::BaseObject
    field :cached_votes_up, Integer, null: true
    field :comments, Types::CommentType.connection_type, null: true
    field :comments_count, Integer, null: true
    field :confidence_score, Integer, null: true
    field :description, String, null: true
    field :geozone, Types::GeozoneType, null: true
    field :geozone_id, Integer, null: true
    field :hot_score, Integer, null: true
    field :id, ID, null: false
    field :proposal_notifications, Types::ProposalNotificationType.connection_type, null: true
    field :public_author, Types::UserType, null: true
    field :public_created_at, String, null: true
    field :retired_at, GraphQL::Types::ISO8601DateTime, null: true
    field :retired_explanation, String, null: true
    field :retired_reason, String, null: true
    field :summary, String, null: true
    field :tags, Types::TagType.connection_type, null: true
    field :title, String, null: true
    field :video_url, String, null: true
    field :votes_for, Types::VoteType.connection_type, null: true

    def tags
      object.tags.public_for_api
    end

    def geozone
      Geozone.public_for_api.find_by(id: object.geozone)
    end
  end
end