Skip to content

Commit

Permalink
Update GitHub GraphQL Schema (#865)
Browse files Browse the repository at this point in the history
Co-authored-by: russellbanks <[email protected]>
  • Loading branch information
github-actions[bot] and russellbanks authored Oct 20, 2024
1 parent d8b9628 commit 69b4700
Showing 1 changed file with 50 additions and 0 deletions.
50 changes: 50 additions & 0 deletions assets/github.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -12662,6 +12662,21 @@ input DraftPullRequestReviewThread {
startSide: DiffSide = RIGHT
}

"""
The Exploit Prediction Scoring System
"""
type EPSS {
"""
The EPSS percentage represents the likelihood of a CVE being exploited.
"""
percentage: Float

"""
The EPSS percentile represents the relative rank of the CVE's likelihood of being exploited compared to other CVEs.
"""
percentile: Float
}

"""
Autogenerated input type of EnablePullRequestAutoMerge
"""
Expand Down Expand Up @@ -40066,6 +40081,16 @@ type Query implements Node {
"""
classifications: [SecurityAdvisoryClassification!]

"""
The EPSS percentage to filter advisories by.
"""
epssPercentage: Float

"""
The EPSS percentile to filter advisories by.
"""
epssPercentile: Float

"""
Returns the first _n_ elements from the list.
"""
Expand Down Expand Up @@ -50013,6 +50038,11 @@ type SecurityAdvisory implements Node {
"""
description: String!

"""
The Exploit Prediction Scoring System
"""
epss: EPSS

"""
The GitHub Security Advisory ID
"""
Expand Down Expand Up @@ -62697,6 +62727,11 @@ type User implements Actor & Node & PackageOwner & ProfileOwner & ProjectOwner &
"""
url: URI!

"""
Whether the request returns publicly visible information or privately visible information about the user
"""
userViewType: UserViewType!

"""
Can the viewer pin repositories and gists to the profile?
"""
Expand Down Expand Up @@ -63300,6 +63335,21 @@ enum UserStatusOrderField {
UPDATED_AT
}

"""
Whether a user being viewed contains public or private information.
"""
enum UserViewType {
"""
A user containing information only visible to the authenticated user.
"""
PRIVATE

"""
A user that is publicly visible.
"""
PUBLIC
}

"""
A domain that can be verified or approved for an organization or an enterprise.
"""
Expand Down

0 comments on commit 69b4700

Please sign in to comment.