Co-authored-by: rachmari <rachmari@users.noreply.github.com>
This commit is contained in:
Octomerger Bot 2023-03-03 08:38:15 -08:00 коммит произвёл GitHub
Родитель 84741ae0a4
Коммит 2b2bad60ab
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
7 изменённых файлов: 1031 добавлений и 0 удалений

Просмотреть файл

@ -37233,6 +37233,121 @@ type SmimeSignature implements GitSignature {
wasSignedByGitHub: Boolean!
}
"""
Social media profile associated with a user.
"""
type SocialAccount {
"""
Name of the social media account as it appears on the profile.
"""
displayName: String!
"""
Software or company that hosts the social media account.
"""
provider: SocialAccountProvider!
"""
URL of the social media account.
"""
url: URI!
}
"""
The connection type for SocialAccount.
"""
type SocialAccountConnection {
"""
A list of edges.
"""
edges: [SocialAccountEdge]
"""
A list of nodes.
"""
nodes: [SocialAccount]
"""
Information to aid in pagination.
"""
pageInfo: PageInfo!
"""
Identifies the total count of items in the connection.
"""
totalCount: Int!
}
"""
An edge in a connection.
"""
type SocialAccountEdge {
"""
A cursor for use in pagination.
"""
cursor: String!
"""
The item at the end of the edge.
"""
node: SocialAccount
}
"""
Software or company that hosts social media accounts.
"""
enum SocialAccountProvider {
"""
Social media and networking website.
"""
FACEBOOK
"""
Catch-all for social media providers that do not yet have specific handling.
"""
GENERIC
"""
Fork of Mastodon with a greater focus on local posting.
"""
HOMETOWN
"""
Social media website with a focus on photo and video sharing.
"""
INSTAGRAM
"""
Professional networking website.
"""
LINKEDIN
"""
Open-source federated microblogging service.
"""
MASTODON
"""
Social news aggregation and discussion website.
"""
REDDIT
"""
Live-streaming service.
"""
TWITCH
"""
Microblogging website.
"""
TWITTER
"""
Online video platform.
"""
YOUTUBE
}
"""
The possible default commit messages for squash merges.
"""
@ -44129,6 +44244,31 @@ type User implements Actor & Node & ProfileOwner & ProjectOwner & RepositoryDisc
orderBy: SavedReplyOrder = {field: UPDATED_AT, direction: DESC}
): SavedReplyConnection
"""
The user's social media accounts, ordered as they appear on the user's profile.
"""
socialAccounts(
"""
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
): SocialAccountConnection!
"""
Repositories the user has starred.
"""

Просмотреть файл

@ -44529,6 +44529,121 @@ type SmimeSignature implements GitSignature {
wasSignedByGitHub: Boolean!
}
"""
Social media profile associated with a user.
"""
type SocialAccount {
"""
Name of the social media account as it appears on the profile.
"""
displayName: String!
"""
Software or company that hosts the social media account.
"""
provider: SocialAccountProvider!
"""
URL of the social media account.
"""
url: URI!
}
"""
The connection type for SocialAccount.
"""
type SocialAccountConnection {
"""
A list of edges.
"""
edges: [SocialAccountEdge]
"""
A list of nodes.
"""
nodes: [SocialAccount]
"""
Information to aid in pagination.
"""
pageInfo: PageInfo!
"""
Identifies the total count of items in the connection.
"""
totalCount: Int!
}
"""
An edge in a connection.
"""
type SocialAccountEdge {
"""
A cursor for use in pagination.
"""
cursor: String!
"""
The item at the end of the edge.
"""
node: SocialAccount
}
"""
Software or company that hosts social media accounts.
"""
enum SocialAccountProvider {
"""
Social media and networking website.
"""
FACEBOOK
"""
Catch-all for social media providers that do not yet have specific handling.
"""
GENERIC
"""
Fork of Mastodon with a greater focus on local posting.
"""
HOMETOWN
"""
Social media website with a focus on photo and video sharing.
"""
INSTAGRAM
"""
Professional networking website.
"""
LINKEDIN
"""
Open-source federated microblogging service.
"""
MASTODON
"""
Social news aggregation and discussion website.
"""
REDDIT
"""
Live-streaming service.
"""
TWITCH
"""
Microblogging website.
"""
TWITTER
"""
Online video platform.
"""
YOUTUBE
}
"""
Entities that can sponsor others via GitHub Sponsors
"""
@ -54804,6 +54919,31 @@ type User implements Actor & Node & PackageOwner & ProfileOwner & ProjectOwner &
orderBy: SavedReplyOrder = {field: UPDATED_AT, direction: DESC}
): SavedReplyConnection
"""
The user's social media accounts, ordered as they appear on the user's profile.
"""
socialAccounts(
"""
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
): SocialAccountConnection!
"""
List of users and organizations this entity is sponsoring.
"""

Просмотреть файл

@ -44529,6 +44529,121 @@ type SmimeSignature implements GitSignature {
wasSignedByGitHub: Boolean!
}
"""
Social media profile associated with a user.
"""
type SocialAccount {
"""
Name of the social media account as it appears on the profile.
"""
displayName: String!
"""
Software or company that hosts the social media account.
"""
provider: SocialAccountProvider!
"""
URL of the social media account.
"""
url: URI!
}
"""
The connection type for SocialAccount.
"""
type SocialAccountConnection {
"""
A list of edges.
"""
edges: [SocialAccountEdge]
"""
A list of nodes.
"""
nodes: [SocialAccount]
"""
Information to aid in pagination.
"""
pageInfo: PageInfo!
"""
Identifies the total count of items in the connection.
"""
totalCount: Int!
}
"""
An edge in a connection.
"""
type SocialAccountEdge {
"""
A cursor for use in pagination.
"""
cursor: String!
"""
The item at the end of the edge.
"""
node: SocialAccount
}
"""
Software or company that hosts social media accounts.
"""
enum SocialAccountProvider {
"""
Social media and networking website.
"""
FACEBOOK
"""
Catch-all for social media providers that do not yet have specific handling.
"""
GENERIC
"""
Fork of Mastodon with a greater focus on local posting.
"""
HOMETOWN
"""
Social media website with a focus on photo and video sharing.
"""
INSTAGRAM
"""
Professional networking website.
"""
LINKEDIN
"""
Open-source federated microblogging service.
"""
MASTODON
"""
Social news aggregation and discussion website.
"""
REDDIT
"""
Live-streaming service.
"""
TWITCH
"""
Microblogging website.
"""
TWITTER
"""
Online video platform.
"""
YOUTUBE
}
"""
Entities that can sponsor others via GitHub Sponsors
"""
@ -54804,6 +54919,31 @@ type User implements Actor & Node & PackageOwner & ProfileOwner & ProjectOwner &
orderBy: SavedReplyOrder = {field: UPDATED_AT, direction: DESC}
): SavedReplyConnection
"""
The user's social media accounts, ordered as they appear on the user's profile.
"""
socialAccounts(
"""
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
): SocialAccountConnection!
"""
List of users and organizations this entity is sponsoring.
"""

Просмотреть файл

@ -1,4 +1,21 @@
[
{
"schemaChanges": [
{
"title": "The GraphQL schema includes these changes:",
"changes": [
"<p>Type <code>SocialAccount</code> was added</p>",
"<p>Type <code>SocialAccountConnection</code> was added</p>",
"<p>Type <code>SocialAccountEdge</code> was added</p>",
"<p>Type <code>SocialAccountProvider</code> was added</p>",
"<p>Field <code>socialAccounts</code> was added to object type <code>User</code></p>"
]
}
],
"previewChanges": [],
"upcomingChanges": [],
"date": "2023-03-03"
},
{
"schemaChanges": [
{

Просмотреть файл

@ -60741,6 +60741,105 @@
}
]
},
{
"name": "SocialAccount",
"kind": "objects",
"id": "socialaccount",
"href": "/graphql/reference/objects#socialaccount",
"description": "<p>Social media profile associated with a user.</p>",
"fields": [
{
"name": "displayName",
"description": "<p>Name of the social media account as it appears on the profile.</p>",
"type": "String!",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
},
{
"name": "provider",
"description": "<p>Software or company that hosts the social media account.</p>",
"type": "SocialAccountProvider!",
"id": "socialaccountprovider",
"kind": "enums",
"href": "/graphql/reference/enums#socialaccountprovider"
},
{
"name": "url",
"description": "<p>URL of the social media account.</p>",
"type": "URI!",
"id": "uri",
"kind": "scalars",
"href": "/graphql/reference/scalars#uri"
}
]
},
{
"name": "SocialAccountConnection",
"kind": "objects",
"id": "socialaccountconnection",
"href": "/graphql/reference/objects#socialaccountconnection",
"description": "<p>The connection type for SocialAccount.</p>",
"fields": [
{
"name": "edges",
"description": "<p>A list of edges.</p>",
"type": "[SocialAccountEdge]",
"id": "socialaccountedge",
"kind": "objects",
"href": "/graphql/reference/objects#socialaccountedge"
},
{
"name": "nodes",
"description": "<p>A list of nodes.</p>",
"type": "[SocialAccount]",
"id": "socialaccount",
"kind": "objects",
"href": "/graphql/reference/objects#socialaccount"
},
{
"name": "pageInfo",
"description": "<p>Information to aid in pagination.</p>",
"type": "PageInfo!",
"id": "pageinfo",
"kind": "objects",
"href": "/graphql/reference/objects#pageinfo"
},
{
"name": "totalCount",
"description": "<p>Identifies the total count of items in the connection.</p>",
"type": "Int!",
"id": "int",
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
}
]
},
{
"name": "SocialAccountEdge",
"kind": "objects",
"id": "socialaccountedge",
"href": "/graphql/reference/objects#socialaccountedge",
"description": "<p>An edge in a connection.</p>",
"fields": [
{
"name": "cursor",
"description": "<p>A cursor for use in pagination.</p>",
"type": "String!",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
},
{
"name": "node",
"description": "<p>The item at the end of the edge.</p>",
"type": "SocialAccount",
"id": "socialaccount",
"kind": "objects",
"href": "/graphql/reference/objects#socialaccount"
}
]
},
{
"name": "SponsorConnection",
"kind": "objects",
@ -69276,6 +69375,56 @@
}
]
},
{
"name": "socialAccounts",
"description": "<p>The user's social media accounts, ordered as they appear on the user's profile.</p>",
"type": "SocialAccountConnection!",
"id": "socialaccountconnection",
"kind": "objects",
"href": "/graphql/reference/objects#socialaccountconnection",
"arguments": [
{
"name": "after",
"description": "<p>Returns the elements in the list that come after the specified cursor.</p>",
"type": {
"name": "String",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
}
},
{
"name": "before",
"description": "<p>Returns the elements in the list that come before the specified cursor.</p>",
"type": {
"name": "String",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
}
},
{
"name": "first",
"description": "<p>Returns the first <em>n</em> elements from the list.</p>",
"type": {
"name": "Int",
"id": "int",
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
}
},
{
"name": "last",
"description": "<p>Returns the last <em>n</em> elements from the list.</p>",
"type": {
"name": "Int",
"id": "int",
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
}
}
]
},
{
"name": "sponsoring",
"description": "<p>List of users and organizations this entity is sponsoring.</p>",
@ -78911,6 +79060,55 @@
}
]
},
{
"name": "SocialAccountProvider",
"kind": "enums",
"id": "socialaccountprovider",
"href": "/graphql/reference/enums#socialaccountprovider",
"description": "<p>Software or company that hosts social media accounts.</p>",
"values": [
{
"name": "FACEBOOK",
"description": "<p>Social media and networking website.</p>"
},
{
"name": "GENERIC",
"description": "<p>Catch-all for social media providers that do not yet have specific handling.</p>"
},
{
"name": "HOMETOWN",
"description": "<p>Fork of Mastodon with a greater focus on local posting.</p>"
},
{
"name": "INSTAGRAM",
"description": "<p>Social media website with a focus on photo and video sharing.</p>"
},
{
"name": "LINKEDIN",
"description": "<p>Professional networking website.</p>"
},
{
"name": "MASTODON",
"description": "<p>Open-source federated microblogging service.</p>"
},
{
"name": "REDDIT",
"description": "<p>Social news aggregation and discussion website.</p>"
},
{
"name": "TWITCH",
"description": "<p>Live-streaming service.</p>"
},
{
"name": "TWITTER",
"description": "<p>Microblogging website.</p>"
},
{
"name": "YOUTUBE",
"description": "<p>Online video platform.</p>"
}
]
},
{
"name": "SponsorOrderField",
"kind": "enums",

Просмотреть файл

@ -51672,6 +51672,105 @@
}
]
},
{
"name": "SocialAccount",
"kind": "objects",
"id": "socialaccount",
"href": "/graphql/reference/objects#socialaccount",
"description": "<p>Social media profile associated with a user.</p>",
"fields": [
{
"name": "displayName",
"description": "<p>Name of the social media account as it appears on the profile.</p>",
"type": "String!",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
},
{
"name": "provider",
"description": "<p>Software or company that hosts the social media account.</p>",
"type": "SocialAccountProvider!",
"id": "socialaccountprovider",
"kind": "enums",
"href": "/graphql/reference/enums#socialaccountprovider"
},
{
"name": "url",
"description": "<p>URL of the social media account.</p>",
"type": "URI!",
"id": "uri",
"kind": "scalars",
"href": "/graphql/reference/scalars#uri"
}
]
},
{
"name": "SocialAccountConnection",
"kind": "objects",
"id": "socialaccountconnection",
"href": "/graphql/reference/objects#socialaccountconnection",
"description": "<p>The connection type for SocialAccount.</p>",
"fields": [
{
"name": "edges",
"description": "<p>A list of edges.</p>",
"type": "[SocialAccountEdge]",
"id": "socialaccountedge",
"kind": "objects",
"href": "/graphql/reference/objects#socialaccountedge"
},
{
"name": "nodes",
"description": "<p>A list of nodes.</p>",
"type": "[SocialAccount]",
"id": "socialaccount",
"kind": "objects",
"href": "/graphql/reference/objects#socialaccount"
},
{
"name": "pageInfo",
"description": "<p>Information to aid in pagination.</p>",
"type": "PageInfo!",
"id": "pageinfo",
"kind": "objects",
"href": "/graphql/reference/objects#pageinfo"
},
{
"name": "totalCount",
"description": "<p>Identifies the total count of items in the connection.</p>",
"type": "Int!",
"id": "int",
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
}
]
},
{
"name": "SocialAccountEdge",
"kind": "objects",
"id": "socialaccountedge",
"href": "/graphql/reference/objects#socialaccountedge",
"description": "<p>An edge in a connection.</p>",
"fields": [
{
"name": "cursor",
"description": "<p>A cursor for use in pagination.</p>",
"type": "String!",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
},
{
"name": "node",
"description": "<p>The item at the end of the edge.</p>",
"type": "SocialAccount",
"id": "socialaccount",
"kind": "objects",
"href": "/graphql/reference/objects#socialaccount"
}
]
},
{
"name": "SshSignature",
"kind": "objects",
@ -58484,6 +58583,56 @@
}
]
},
{
"name": "socialAccounts",
"description": "<p>The user's social media accounts, ordered as they appear on the user's profile.</p>",
"type": "SocialAccountConnection!",
"id": "socialaccountconnection",
"kind": "objects",
"href": "/graphql/reference/objects#socialaccountconnection",
"arguments": [
{
"name": "after",
"description": "<p>Returns the elements in the list that come after the specified cursor.</p>",
"type": {
"name": "String",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
}
},
{
"name": "before",
"description": "<p>Returns the elements in the list that come before the specified cursor.</p>",
"type": {
"name": "String",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
}
},
{
"name": "first",
"description": "<p>Returns the first <em>n</em> elements from the list.</p>",
"type": {
"name": "Int",
"id": "int",
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
}
},
{
"name": "last",
"description": "<p>Returns the last <em>n</em> elements from the list.</p>",
"type": {
"name": "Int",
"id": "int",
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
}
}
]
},
{
"name": "starredRepositories",
"description": "<p>Repositories the user has starred.</p>",
@ -65675,6 +65824,55 @@
}
]
},
{
"name": "SocialAccountProvider",
"kind": "enums",
"id": "socialaccountprovider",
"href": "/graphql/reference/enums#socialaccountprovider",
"description": "<p>Software or company that hosts social media accounts.</p>",
"values": [
{
"name": "FACEBOOK",
"description": "<p>Social media and networking website.</p>"
},
{
"name": "GENERIC",
"description": "<p>Catch-all for social media providers that do not yet have specific handling.</p>"
},
{
"name": "HOMETOWN",
"description": "<p>Fork of Mastodon with a greater focus on local posting.</p>"
},
{
"name": "INSTAGRAM",
"description": "<p>Social media website with a focus on photo and video sharing.</p>"
},
{
"name": "LINKEDIN",
"description": "<p>Professional networking website.</p>"
},
{
"name": "MASTODON",
"description": "<p>Open-source federated microblogging service.</p>"
},
{
"name": "REDDIT",
"description": "<p>Social news aggregation and discussion website.</p>"
},
{
"name": "TWITCH",
"description": "<p>Live-streaming service.</p>"
},
{
"name": "TWITTER",
"description": "<p>Microblogging website.</p>"
},
{
"name": "YOUTUBE",
"description": "<p>Online video platform.</p>"
}
]
},
{
"name": "SquashMergeCommitMessage",
"kind": "enums",

Просмотреть файл

@ -60741,6 +60741,105 @@
}
]
},
{
"name": "SocialAccount",
"kind": "objects",
"id": "socialaccount",
"href": "/graphql/reference/objects#socialaccount",
"description": "<p>Social media profile associated with a user.</p>",
"fields": [
{
"name": "displayName",
"description": "<p>Name of the social media account as it appears on the profile.</p>",
"type": "String!",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
},
{
"name": "provider",
"description": "<p>Software or company that hosts the social media account.</p>",
"type": "SocialAccountProvider!",
"id": "socialaccountprovider",
"kind": "enums",
"href": "/graphql/reference/enums#socialaccountprovider"
},
{
"name": "url",
"description": "<p>URL of the social media account.</p>",
"type": "URI!",
"id": "uri",
"kind": "scalars",
"href": "/graphql/reference/scalars#uri"
}
]
},
{
"name": "SocialAccountConnection",
"kind": "objects",
"id": "socialaccountconnection",
"href": "/graphql/reference/objects#socialaccountconnection",
"description": "<p>The connection type for SocialAccount.</p>",
"fields": [
{
"name": "edges",
"description": "<p>A list of edges.</p>",
"type": "[SocialAccountEdge]",
"id": "socialaccountedge",
"kind": "objects",
"href": "/graphql/reference/objects#socialaccountedge"
},
{
"name": "nodes",
"description": "<p>A list of nodes.</p>",
"type": "[SocialAccount]",
"id": "socialaccount",
"kind": "objects",
"href": "/graphql/reference/objects#socialaccount"
},
{
"name": "pageInfo",
"description": "<p>Information to aid in pagination.</p>",
"type": "PageInfo!",
"id": "pageinfo",
"kind": "objects",
"href": "/graphql/reference/objects#pageinfo"
},
{
"name": "totalCount",
"description": "<p>Identifies the total count of items in the connection.</p>",
"type": "Int!",
"id": "int",
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
}
]
},
{
"name": "SocialAccountEdge",
"kind": "objects",
"id": "socialaccountedge",
"href": "/graphql/reference/objects#socialaccountedge",
"description": "<p>An edge in a connection.</p>",
"fields": [
{
"name": "cursor",
"description": "<p>A cursor for use in pagination.</p>",
"type": "String!",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
},
{
"name": "node",
"description": "<p>The item at the end of the edge.</p>",
"type": "SocialAccount",
"id": "socialaccount",
"kind": "objects",
"href": "/graphql/reference/objects#socialaccount"
}
]
},
{
"name": "SponsorConnection",
"kind": "objects",
@ -69276,6 +69375,56 @@
}
]
},
{
"name": "socialAccounts",
"description": "<p>The user's social media accounts, ordered as they appear on the user's profile.</p>",
"type": "SocialAccountConnection!",
"id": "socialaccountconnection",
"kind": "objects",
"href": "/graphql/reference/objects#socialaccountconnection",
"arguments": [
{
"name": "after",
"description": "<p>Returns the elements in the list that come after the specified cursor.</p>",
"type": {
"name": "String",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
}
},
{
"name": "before",
"description": "<p>Returns the elements in the list that come before the specified cursor.</p>",
"type": {
"name": "String",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
}
},
{
"name": "first",
"description": "<p>Returns the first <em>n</em> elements from the list.</p>",
"type": {
"name": "Int",
"id": "int",
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
}
},
{
"name": "last",
"description": "<p>Returns the last <em>n</em> elements from the list.</p>",
"type": {
"name": "Int",
"id": "int",
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
}
}
]
},
{
"name": "sponsoring",
"description": "<p>List of users and organizations this entity is sponsoring.</p>",
@ -78911,6 +79060,55 @@
}
]
},
{
"name": "SocialAccountProvider",
"kind": "enums",
"id": "socialaccountprovider",
"href": "/graphql/reference/enums#socialaccountprovider",
"description": "<p>Software or company that hosts social media accounts.</p>",
"values": [
{
"name": "FACEBOOK",
"description": "<p>Social media and networking website.</p>"
},
{
"name": "GENERIC",
"description": "<p>Catch-all for social media providers that do not yet have specific handling.</p>"
},
{
"name": "HOMETOWN",
"description": "<p>Fork of Mastodon with a greater focus on local posting.</p>"
},
{
"name": "INSTAGRAM",
"description": "<p>Social media website with a focus on photo and video sharing.</p>"
},
{
"name": "LINKEDIN",
"description": "<p>Professional networking website.</p>"
},
{
"name": "MASTODON",
"description": "<p>Open-source federated microblogging service.</p>"
},
{
"name": "REDDIT",
"description": "<p>Social news aggregation and discussion website.</p>"
},
{
"name": "TWITCH",
"description": "<p>Live-streaming service.</p>"
},
{
"name": "TWITTER",
"description": "<p>Microblogging website.</p>"
},
{
"name": "YOUTUBE",
"description": "<p>Online video platform.</p>"
}
]
},
{
"name": "SponsorOrderField",
"kind": "enums",