GraphQl Allow filtering epics by negated values
What does this MR do?
Allow filtering epics by negated params on GraphQL.
Sample query:
query epicBoardListEpics {
group(fullPath: "flightjs") {
epics(not: { authorUsername: "root" }) {
edges {
node {
iid
title
}
}
}
}
}
related to #273459 (closed)
Edited by Felipe Cardozo