Skip to content

Allow to filter epics by start_date, end_date and state using GraphQL

Felipe Artur requested to merge issue_12887 into master

What does this MR do?

Use GraphQL query to fetch epics on Roadmap.

The following query structure can be used to fetch epics for Roadmap:

{
  group(fullPath: "group") {
    id
    name
    epics(state: opened, startDate: "2019-08-01", endDate: "2019-08-28") {
      edges {
        node {
          id
          state
          startDate
          dueDate
        }
      }
    }
  }
}

part of #12887 (closed)

Does this MR meet the acceptance criteria?

Conformity

Performance and Testing

Security

If this MR contains changes to processing or storing of credentials or tokens, authorization and authentication methods and other items described in the security review guidelines:

  • Label as security and @ mention @gitlab-com/gl-security/appsec
  • The MR includes necessary changes to maintain consistency between UI, API, email, or other methods
  • Security reports checked/validated by a reviewer from the AppSec team
Edited by Felipe Artur

Merge request reports