Interface GitHub::ProfileOwner

Represents any entity on GitHub that has a profile page.

Fields

anyPinnableItems(type: PinnableItemType): Boolean!

Determine if this repository owner has any items that can be pinned to their profile.

Args

type: PinnableItemType

Filter to only a particular kind of pinnable item.

email: String

The public profile email.

id: ID!

itemShowcase: ProfileItemShowcase!

Showcases a selection of repositories and gists that the profile owner has either curated or that have been selected automatically based on popularity.

location: String

The public profile location.

login: String!

The username used to login.

name: String

The public profile name.

pinnableItems(types: [PinnableItemType!], after: String, before: String, first: Int, last: Int): PinnableItemConnection!

A list of repositories and gists this profile owner can pin to their profile.

Args

types: [PinnableItemType!]

Filter the types of pinnable items that are returned.

after: String

Returns the elements in the list that come after the specified cursor.

before: String

Returns the elements in the list that come before the specified cursor.

first: Int

Returns the first n elements from the list.

last: Int

Returns the last n elements from the list.

pinnedItems(types: [PinnableItemType!], after: String, before: String, first: Int, last: Int): PinnableItemConnection!

A list of repositories and gists this profile owner has pinned to their profile

Args

types: [PinnableItemType!]

Filter the types of pinned items that are returned.

after: String

Returns the elements in the list that come after the specified cursor.

before: String

Returns the elements in the list that come before the specified cursor.

first: Int

Returns the first n elements from the list.

last: Int

Returns the last n elements from the list.

pinnedItemsRemaining: Int!

Returns how many more items this profile owner can pin to their profile.

viewerCanChangePinnedItems: Boolean!

Can the viewer pin repositories and gists to the profile?

websiteUrl: URI

The public profile website URL.

Possible Types

Organization

User