summaryrefslogtreecommitdiff
path: root/lib/gitlab/cycle_analytics/plan_helper.rb
blob: ae578d45ad5bba68f73550b917a6e4f9f431967a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# frozen_string_literal: true

module Gitlab
  module CycleAnalytics
    module PlanHelper
      def stage_query(project_ids)
        query = issue_table.join(issue_metrics_table).on(issue_table[:id].eq(issue_metrics_table[:issue_id]))
          .project(issue_table[:project_id].as("project_id"))
          .where(issue_table[:project_id].in(project_ids))
          .where(issue_table[:created_at].gteq(options[:from]))
          .where(issue_metrics_table[:first_added_to_board_at].not_eq(nil).or(issue_metrics_table[:first_associated_with_milestone_at].not_eq(nil)))
          .where(issue_metrics_table[:first_mentioned_in_commit_at].not_eq(nil))

        query
      end
    end
  end
end