Graphql: find issues by repo and label

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

Hey @zenchen,

We currently don’t have a query that would allow you to search all issues in a repo, instead you’ll need to search for issues within a pipeline that match your label. This can be done using the fetchIssuesByPipeline query.