Skip to content

Add Event type to GraphQL and events to epics

George Koltsov requested to merge georgekoltsov/add-events-to-epics-graphql into master

What does this MR do?

This MR:

Mentions #299525 (closed)

To test

  1. Create a new epic in a group
  2. Open GraphiQL page http://gdk.test:3000/-/graphql-explorer
  3. Test epic events query and verify correct result is shown
{
  group(fullPath: "<GROUP_NAME>") {
    epics(first: 10) {
      nodes {
        events {
          nodes {
            action
            author {
              id
            }
            createdAt
            updatedAt
          }
        }
      }
    }
  }
}

Screenshots (strongly suggested)

image

Does this MR meet the acceptance criteria?

Conformity

Availability 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 George Koltsov

Merge request reports

Loading