Expose blocking/blocked epics properties on GraphQL
What does this MR do and why?
Exposes related epics blocking/blocked information on GraphQL, we are adding the same
properties that are already exposed for IssueType.
related to #355739 (closed)
How to set up and validate locally
Ultimate license required
- Create an epic
- Go to linked epics section
- Add one epic blocking this epic
- Add another epic blocked by the current one
- Use [GraphiQL explorer] and try the following query for the epic you just modified:
query epicBlocksData {
  group(fullPath: "the epic group") {
    epic(iid: EPIC_IID) {
      blocked
      blockingCount
      blockedByCount
      blockedByEpics {
        nodes {
          title
        }
      }
    }
  }
}MR acceptance checklist
This checklist encourages us to confirm any changes have been analyzed to reduce risks in quality, performance, reliability, security, and maintainability.
- 
I have evaluated the MR acceptance checklist for this MR. 
Edited  by Felipe Cardozo