Skip to content

SSHKey

An SSH key associated with a repository, not an account. Often referred to as deploy key. Provides access to this repository, but only vie SSH. Can have read-only or read-write access.

type SSHKey {
id: Int!
rid: ID!
created: Time!
lastUsed: Time
repo: Repository!
key: String!
keyType: String!
fingerprintSHA256: String!
comment: String
access: AccessMode!
}

The access that applies to this key for this repository

createDeployKey mutation ● deleteDeployKey mutation

SSHKeyCursor object