Skip to content

Commit

Permalink
Action ran graphql script"update-files"
Browse files Browse the repository at this point in the history
  • Loading branch information
rachmari authored Jun 20, 2021
1 parent f19d695 commit b342326
Show file tree
Hide file tree
Showing 9 changed files with 545 additions and 4 deletions.
6 changes: 6 additions & 0 deletions data/graphql/ghae/graphql_upcoming_changes.public-ghae.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,3 +120,9 @@ upcoming_changes:
date: '2021-06-21'
criticality: breaking
owner: reybard
- location: ReactionGroup.users
description: '`users` will be removed. Use the `reactors` field instead.'
reason: Reactors can now be mannequins, bots, and organizations.
date: '2021-10-01T00:00:00+00:00'
criticality: breaking
owner: synthead
78 changes: 78 additions & 0 deletions data/graphql/ghae/schema.docs-ghae.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -26787,6 +26787,31 @@ type ReactionGroup {
"""
createdAt: DateTime

"""
Reactors to the reaction subject with the emotion represented by this reaction group.
"""
reactors(
"""
Returns the elements in the list that come after the specified cursor.
"""
after: String

"""
Returns the elements in the list that come before the specified cursor.
"""
before: String

"""
Returns the first _n_ elements from the list.
"""
first: Int

"""
Returns the last _n_ elements from the list.
"""
last: Int
): ReactorConnection!

"""
The subject that was reacted to.
"""
Expand Down Expand Up @@ -26816,6 +26841,9 @@ type ReactionGroup {
"""
last: Int
): ReactingUserConnection!
@deprecated(
reason: "Reactors can now be mannequins, bots, and organizations. Use the `reactors` field instead. Removal on 2021-10-01 UTC."
)

"""
Whether or not the authenticated user has left a reaction on the subject.
Expand Down Expand Up @@ -26848,6 +26876,56 @@ enum ReactionOrderField {
CREATED_AT
}

"""
Types that can be assigned to reactions.
"""
union Reactor = Bot | Mannequin | Organization | User

"""
The connection type for Reactor.
"""
type ReactorConnection {
"""
A list of edges.
"""
edges: [ReactorEdge]

"""
A list of nodes.
"""
nodes: [Reactor]

"""
Information to aid in pagination.
"""
pageInfo: PageInfo!

"""
Identifies the total count of items in the connection.
"""
totalCount: Int!
}

"""
Represents an author of a reaction.
"""
type ReactorEdge {
"""
A cursor for use in pagination.
"""
cursor: String!

"""
The author of the reaction.
"""
node: Reactor!

"""
The moment when the user made the reaction.
"""
reactedAt: DateTime!
}

"""
Represents a 'ready_for_review' event on a given pull request.
"""
Expand Down
6 changes: 6 additions & 0 deletions data/graphql/graphql_upcoming_changes.public.yml
Original file line number Diff line number Diff line change
Expand Up @@ -128,3 +128,9 @@ upcoming_changes:
date: '2021-06-21'
criticality: breaking
owner: reybard
- location: ReactionGroup.users
description: '`users` will be removed. Use the `reactors` field instead.'
reason: Reactors can now be mannequins, bots, and organizations.
date: '2021-10-01T00:00:00+00:00'
criticality: breaking
owner: synthead
78 changes: 78 additions & 0 deletions data/graphql/schema.docs.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -28982,6 +28982,31 @@ type ReactionGroup {
"""
createdAt: DateTime

"""
Reactors to the reaction subject with the emotion represented by this reaction group.
"""
reactors(
"""
Returns the elements in the list that come after the specified cursor.
"""
after: String

"""
Returns the elements in the list that come before the specified cursor.
"""
before: String

"""
Returns the first _n_ elements from the list.
"""
first: Int

"""
Returns the last _n_ elements from the list.
"""
last: Int
): ReactorConnection!

"""
The subject that was reacted to.
"""
Expand Down Expand Up @@ -29011,6 +29036,9 @@ type ReactionGroup {
"""
last: Int
): ReactingUserConnection!
@deprecated(
reason: "Reactors can now be mannequins, bots, and organizations. Use the `reactors` field instead. Removal on 2021-10-01 UTC."
)

"""
Whether or not the authenticated user has left a reaction on the subject.
Expand Down Expand Up @@ -29043,6 +29071,56 @@ enum ReactionOrderField {
CREATED_AT
}

"""
Types that can be assigned to reactions.
"""
union Reactor = Bot | Mannequin | Organization | User

"""
The connection type for Reactor.
"""
type ReactorConnection {
"""
A list of edges.
"""
edges: [ReactorEdge]

"""
A list of nodes.
"""
nodes: [Reactor]

"""
Information to aid in pagination.
"""
pageInfo: PageInfo!

"""
Identifies the total count of items in the connection.
"""
totalCount: Int!
}

"""
Represents an author of a reaction.
"""
type ReactorEdge {
"""
A cursor for use in pagination.
"""
cursor: String!

"""
The author of the reaction.
"""
node: Reactor!

"""
The moment when the user made the reaction.
"""
reactedAt: DateTime!
}

"""
Represents a 'ready_for_review' event on a given pull request.
"""
Expand Down
23 changes: 23 additions & 0 deletions lib/graphql/static/changelog.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,27 @@
[
{
"schemaChanges": [
{
"title": "The GraphQL schema includes these changes:",
"changes": [
"Type `Reactor` was added",
"Type `ReactorConnection` was added",
"Type `ReactorEdge` was added",
"Field `reactors` was added to object type `ReactionGroup`"
]
}
],
"previewChanges": [],
"upcomingChanges": [
{
"title": "The following changes will be made to the schema:",
"changes": [
"On member `ReactionGroup.users`:`users` will be removed. Use the `reactors` field instead. **Effective 2021-10-01**."
]
}
],
"date": "2021-06-20"
},
{
"schemaChanges": [
{
Expand Down
24 changes: 22 additions & 2 deletions lib/graphql/static/prerendered-objects.json

Large diffs are not rendered by default.

Loading

0 comments on commit b342326

Please sign in to comment.