Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Github Graphql returns none for author if dependabot PR #9656

Open
1 task done
broksonic21 opened this issue May 2, 2024 · 0 comments
Open
1 task done

Github Graphql returns none for author if dependabot PR #9656

broksonic21 opened this issue May 2, 2024 · 0 comments
Labels
L: git:submodules Git submodules L: javascript T: bug 🐞 Something isn't working

Comments

@broksonic21
Copy link

Is there an existing issue for this?

  • I have searched the existing issues

Package ecosystem

npm

Package manager version

n/a

Language version

n/a

Manifest location and content before the Dependabot update

n/a

dependabot.yml content

n/a

Updated dependency

n/a

What you expected to see, versus what you actually saw

Example:

query pullRequest {
  repository(owner: "broksonic21", name: "nx-dependabot-increase") {
    pullRequests(states: OPEN, first: 1) {
      nodes {
        title
        isDraft
        url
        author {
          ... on User {
            email
            name
            login
          }
        }
      }
    }
  }

Gets

{
  "data": {
    "repository": {
      "pullRequests": {
        "nodes": [
          {
            "title": "Bump follow-redirects from 1.15.5 to 1.15.6",
            "isDraft": false,
            "url": "https://github.com/broksonic21/nx-dependabot-increase/pull/8",
            "author": {}
          }
        ]
      }
    }
  }
}

With an empty author

Is there a syntax which can read dependabot as the author?

Native package manager behavior

No response

Images of the diff or a link to the PR, issue, or logs

No response

Smallest manifest that reproduces the issue

No response

@broksonic21 broksonic21 added the T: bug 🐞 Something isn't working label May 2, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
L: git:submodules Git submodules L: javascript T: bug 🐞 Something isn't working
Projects
Status: No status
Development

No branches or pull requests

1 participant