Skip to content

Entity

No description

interface Entity {
id: Int!
created: Time!
updated: Time!
canonicalName: String!
repository(
name: String!
): Repository
repositories(
cursor: Cursor
filter: Filter
): RepositoryCursor!
}

The canonical name of this entity. For users, this is their username prefixed with ‘~’. Additional entity types will be supported in the future.

Returns a specific repository owned by the entity.

Returns a list of repositories owned by the entity.

ACL object ● GitEvent object ● Redirect object ● Repository object

User object