diff --git a/app/graph/types/proposal_type.rb b/app/graph/types/proposal_type.rb index 292c0aa15..67e06d70d 100644 --- a/app/graph/types/proposal_type.rb +++ b/app/graph/types/proposal_type.rb @@ -7,9 +7,14 @@ ProposalType = GraphQL::ObjectType.define do 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 :author_id, types.Int, "ID of the author of 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" + field :geozone_id, types.Int, "ID of the geozone affected by this proposal" + field :retired_at, types.String, "Date when this proposal was retired" + field :retired_reason, types.String, "Reason why this proposal was retired" + field :retired_explanation, types.String, "Explanation why this proposal was retired" end