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

Add fixedAt property in schema #563

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions schema.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17101,6 +17101,8 @@ export type RepositoryVulnerabilityAlert = Node & RepositoryNode & {
dismisser?: Maybe<User>;
id: Scalars['ID'];
/** The associated repository */
fixedAt?: Maybe<Scalars['DateTime']>;
/** When the vulnerability was fixed?*/
repository: Repository;
/** The associated security advisory */
securityAdvisory?: Maybe<SecurityAdvisory>;
Expand Down
9 changes: 7 additions & 2 deletions schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -34832,7 +34832,12 @@ type RepositoryVulnerabilityAlert implements Node & RepositoryNode {
When was the alert dismissed?
"""
dismissedAt: DateTime


"""
When was the alert fixed?
"""
fixedAt: DateTime

"""
The user who dismissed the alert
"""
Expand Down Expand Up @@ -44837,4 +44842,4 @@ type WorkflowRun implements Node {
"""
A valid x509 certificate string
"""
scalar X509Certificate
scalar X509Certificate