Hi,
From Examples | Zenhub Developers
I see there is
query {
searchIssuesByPipeline(
pipelineId: "PIPELINE_ID",
filters: {
labels: { in: ["Backend"]}
}
) {
nodes {
id
number
title
}
}
}
Is there something equivalent to the github graphql search issue query against a repo? Eg
{
search(first: 100, type: ISSUE, query:"repo:org/repoName created:>=2023-09-04 state:open is:Epic label:\"High-priority\"") {
issueCount
pageInfo {
hasNextPage
endCursor
}
edges {
node {
... on Issue {
number
title
....
I wanted to get zenhub issues matching labels to obtain estimate, pipeline and sprint fields as they are not available in github query