https-jrtorres042-github-com
/
git_covid-19_csv-github-security-alerts-workflow_diff-1
Public template
forked from yahoo/GitHub-Security-Alerts-Workflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqueries.py
30 lines (29 loc) · 1.06 KB
/
queries.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#Copyright 2019, Oath Inc.
#Licensed under the terms of the Apache 2.0 license. See LICENSE file in root for terms.
query = """{organization
(login: "yahoo")
{repositories(first:100)
{ edges
{ node
{owner
{ id }
name
vulnerabilityAlerts ( first: 100 )
{ edges
{ node
{ affectedRange
dismissReason
dismissedAt
externalIdentifier
externalReference
fixedIn
id
packageName
}
}
}
}
}
}
}
}"""