Added more fields to graphql proposal_type

This commit is contained in:
Alberto Miedes Garcés
2016-09-29 11:22:18 +02:00
parent b90a6664b0
commit 5c7f03bdf1

View File

@@ -5,4 +5,11 @@ ProposalType = GraphQL::ObjectType.define do
field :id, types.ID, "The id of this proposal"
field :title, types.String, "The title of this proposal"
field :description, types.String, "The description of this proposal"
field :question, types.String, "The question of this proposal"
field :external_url, types.String, "External url related to this proposal"
field :flags_count, types.Int, "Number of flags of this proposal"
field :cached_votes_up, types.Int, "Number of upvotes of this proposal"
field :comments_count, types.Int, "Number of comments on this proposal"
field :summary, types.String, "The summary of this proposal"
field :video_url, types.String, "External video url related to this proposal"
end