Created
July 21, 2020 16:31
-
-
Save inksong/0d14baf0860046c7a121ee033f7c07b5 to your computer and use it in GitHub Desktop.
Query for Github GraphQL API
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
securityVulnerabilities(ecosystem: MAVEN, first: 100) { | |
nodes { | |
package { | |
name | |
ecosystem | |
} | |
vulnerableVersionRange | |
severity | |
updatedAt | |
firstPatchedVersion { | |
identifier | |
} | |
advisory { | |
summary | |
ghsaId | |
description | |
} | |
} | |
totalCount | |
} | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment