Skip to content

Commit b749e41

Browse files
authored
Action ran graphql script"update-files"
1 parent 6ce85ac commit b749e41

6 files changed

Lines changed: 834 additions & 2 deletions

File tree

data/graphql/ghae/schema.docs-ghae.graphql

Lines changed: 115 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1631,6 +1631,86 @@ type BranchProtectionRuleEdge {
16311631
node: BranchProtectionRule
16321632
}
16331633

1634+
"""
1635+
The Common Vulnerability Scoring System
1636+
"""
1637+
type CVSS {
1638+
"""
1639+
The CVSS score associated with this advisory
1640+
"""
1641+
score: Float!
1642+
1643+
"""
1644+
The CVSS vector string associated with this advisory
1645+
"""
1646+
vectorString: String
1647+
}
1648+
1649+
"""
1650+
A common weakness enumeration
1651+
"""
1652+
type CWE implements Node {
1653+
"""
1654+
The id of the CWE
1655+
"""
1656+
cweId: String!
1657+
1658+
"""
1659+
A detailed description of this CWE
1660+
"""
1661+
description: String!
1662+
1663+
"""
1664+
ID of the object.
1665+
"""
1666+
id: ID!
1667+
1668+
"""
1669+
The name of this CWE
1670+
"""
1671+
name: String!
1672+
}
1673+
1674+
"""
1675+
The connection type for CWE.
1676+
"""
1677+
type CWEConnection {
1678+
"""
1679+
A list of edges.
1680+
"""
1681+
edges: [CWEEdge]
1682+
1683+
"""
1684+
A list of nodes.
1685+
"""
1686+
nodes: [CWE]
1687+
1688+
"""
1689+
Information to aid in pagination.
1690+
"""
1691+
pageInfo: PageInfo!
1692+
1693+
"""
1694+
Identifies the total count of items in the connection.
1695+
"""
1696+
totalCount: Int!
1697+
}
1698+
1699+
"""
1700+
An edge in a connection.
1701+
"""
1702+
type CWEEdge {
1703+
"""
1704+
A cursor for use in pagination.
1705+
"""
1706+
cursor: String!
1707+
1708+
"""
1709+
The item at the end of the edge.
1710+
"""
1711+
node: CWE
1712+
}
1713+
16341714
"""
16351715
Autogenerated input type of ChangeUserStatus
16361716
"""
@@ -24073,6 +24153,11 @@ type Release implements Node & UniformResourceLocatable {
2407324153
name: String
2407424154
): ReleaseAssetConnection!
2407524155

24156+
"""
24157+
The repository that the release belongs to.
24158+
"""
24159+
repository: Repository!
24160+
2407624161
"""
2407724162
The HTTP path for this issue
2407824163
"""
@@ -29896,6 +29981,36 @@ enum SearchType {
2989629981
A GitHub Security Advisory
2989729982
"""
2989829983
type SecurityAdvisory implements Node {
29984+
"""
29985+
The CVSS associated with this advisory
29986+
"""
29987+
cvss: CVSS!
29988+
29989+
"""
29990+
CWEs associated with this Advisory
29991+
"""
29992+
cwes(
29993+
"""
29994+
Returns the elements in the list that come after the specified cursor.
29995+
"""
29996+
after: String
29997+
29998+
"""
29999+
Returns the elements in the list that come before the specified cursor.
30000+
"""
30001+
before: String
30002+
30003+
"""
30004+
Returns the first _n_ elements from the list.
30005+
"""
30006+
first: Int
30007+
30008+
"""
30009+
Returns the last _n_ elements from the list.
30010+
"""
30011+
last: Int
30012+
): CWEConnection!
30013+
2989930014
"""
2990030015
Identifies the primary key from the database.
2990130016
"""

data/graphql/schema.docs.graphql

Lines changed: 166 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1721,6 +1721,86 @@ type BranchProtectionRuleEdge {
17211721
node: BranchProtectionRule
17221722
}
17231723

1724+
"""
1725+
The Common Vulnerability Scoring System
1726+
"""
1727+
type CVSS {
1728+
"""
1729+
The CVSS score associated with this advisory
1730+
"""
1731+
score: Float!
1732+
1733+
"""
1734+
The CVSS vector string associated with this advisory
1735+
"""
1736+
vectorString: String
1737+
}
1738+
1739+
"""
1740+
A common weakness enumeration
1741+
"""
1742+
type CWE implements Node {
1743+
"""
1744+
The id of the CWE
1745+
"""
1746+
cweId: String!
1747+
1748+
"""
1749+
A detailed description of this CWE
1750+
"""
1751+
description: String!
1752+
1753+
"""
1754+
ID of the object.
1755+
"""
1756+
id: ID!
1757+
1758+
"""
1759+
The name of this CWE
1760+
"""
1761+
name: String!
1762+
}
1763+
1764+
"""
1765+
The connection type for CWE.
1766+
"""
1767+
type CWEConnection {
1768+
"""
1769+
A list of edges.
1770+
"""
1771+
edges: [CWEEdge]
1772+
1773+
"""
1774+
A list of nodes.
1775+
"""
1776+
nodes: [CWE]
1777+
1778+
"""
1779+
Information to aid in pagination.
1780+
"""
1781+
pageInfo: PageInfo!
1782+
1783+
"""
1784+
Identifies the total count of items in the connection.
1785+
"""
1786+
totalCount: Int!
1787+
}
1788+
1789+
"""
1790+
An edge in a connection.
1791+
"""
1792+
type CWEEdge {
1793+
"""
1794+
A cursor for use in pagination.
1795+
"""
1796+
cursor: String!
1797+
1798+
"""
1799+
The item at the end of the edge.
1800+
"""
1801+
node: CWE
1802+
}
1803+
17241804
"""
17251805
Autogenerated input type of CancelEnterpriseAdminInvitation
17261806
"""
@@ -26227,6 +26307,11 @@ type Release implements Node & UniformResourceLocatable {
2622726307
name: String
2622826308
): ReleaseAssetConnection!
2622926309

26310+
"""
26311+
The repository that the release belongs to.
26312+
"""
26313+
repository: Repository!
26314+
2623026315
"""
2623126316
The HTTP path for this issue
2623226317
"""
@@ -32350,6 +32435,36 @@ enum SearchType {
3235032435
A GitHub Security Advisory
3235132436
"""
3235232437
type SecurityAdvisory implements Node {
32438+
"""
32439+
The CVSS associated with this advisory
32440+
"""
32441+
cvss: CVSS!
32442+
32443+
"""
32444+
CWEs associated with this Advisory
32445+
"""
32446+
cwes(
32447+
"""
32448+
Returns the elements in the list that come after the specified cursor.
32449+
"""
32450+
after: String
32451+
32452+
"""
32453+
Returns the elements in the list that come before the specified cursor.
32454+
"""
32455+
before: String
32456+
32457+
"""
32458+
Returns the first _n_ elements from the list.
32459+
"""
32460+
first: Int
32461+
32462+
"""
32463+
Returns the last _n_ elements from the list.
32464+
"""
32465+
last: Int
32466+
): CWEConnection!
32467+
3235332468
"""
3235432469
Identifies the primary key from the database.
3235532470
"""
@@ -33181,10 +33296,61 @@ enum SponsorableOrderField {
3318133296
LOGIN
3318233297
}
3318333298

33299+
"""
33300+
A goal associated with a GitHub Sponsors listing, representing a target the sponsored maintainer would like to attain.
33301+
"""
33302+
type SponsorsGoal {
33303+
"""
33304+
A description of the goal from the maintainer.
33305+
"""
33306+
description: String
33307+
33308+
"""
33309+
What the objective of this goal is.
33310+
"""
33311+
kind: SponsorsGoalKind!
33312+
33313+
"""
33314+
The percentage representing how complete this goal is, between 0-100.
33315+
"""
33316+
percentComplete: Int!
33317+
33318+
"""
33319+
What the goal amount is. Represents a dollar amount for monthly sponsorship
33320+
amount goals. Represents a count of unique sponsors for total sponsors count goals.
33321+
"""
33322+
targetValue: Int!
33323+
33324+
"""
33325+
A brief summary of the kind and target value of this goal.
33326+
"""
33327+
title: String!
33328+
}
33329+
33330+
"""
33331+
The different kinds of goals a GitHub Sponsors member can have.
33332+
"""
33333+
enum SponsorsGoalKind {
33334+
"""
33335+
The goal is about getting a certain dollar amount from sponsorships each month.
33336+
"""
33337+
MONTHLY_SPONSORSHIP_AMOUNT
33338+
33339+
"""
33340+
The goal is about reaching a certain number of sponsors.
33341+
"""
33342+
TOTAL_SPONSORS_COUNT
33343+
}
33344+
3318433345
"""
3318533346
A GitHub Sponsors listing.
3318633347
"""
3318733348
type SponsorsListing implements Node {
33349+
"""
33350+
The current goal the maintainer is trying to reach with GitHub Sponsors, if any.
33351+
"""
33352+
activeGoal: SponsorsGoal
33353+
3318833354
"""
3318933355
Identifies the date and time when the object was created.
3319033356
"""

lib/graphql/static/changelog.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,26 @@
11
[
2+
{
3+
"schemaChanges": [
4+
{
5+
"title": "The GraphQL schema includes these changes:",
6+
"changes": [
7+
"Type `CVSS` was added",
8+
"Type `CWEConnection` was added",
9+
"Type `CWEEdge` was added",
10+
"Type `CWE` was added",
11+
"Type `SponsorsGoal` was added",
12+
"Type `SponsorsGoalKind` was added",
13+
"Field `repository` was added to object type `Release`",
14+
"Field `cvss` was added to object type `SecurityAdvisory`",
15+
"Field `cwes` was added to object type `SecurityAdvisory`",
16+
"Field `activeGoal` was added to object type `SponsorsListing`"
17+
]
18+
}
19+
],
20+
"previewChanges": [],
21+
"upcomingChanges": [],
22+
"date": "2021-02-16"
23+
},
224
{
325
"schemaChanges": [
426
{

lib/graphql/static/prerendered-objects.json

Lines changed: 47 additions & 2 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)