Passkey
A passkey the user has enrolled to sign in without a password.
type Passkey {
authenticator: String
created_at: DateTime!
id: ID!
is_synced: Boolean!
last_used_at: DateTime
name: String!
}
Fields
Passkey.authenticator ● String scalar
The authenticator holding this passkey, such as iCloud Keychain or Windows Hello. Null when the authenticator does not identify itself.
Passkey.created_at ● DateTime! non-null scalar
Passkey.id ● ID! non-null scalar
Passkey.is_synced ● Boolean! non-null scalar
True when this passkey is synced to a cloud keychain and so survives the loss of the device it was created on.
Passkey.last_used_at ● DateTime scalar
Passkey.name ● String! non-null scalar
The label the user gave this passkey, such as "MacBook Pro".
Returned By
completePasskeyRegistration mutation ● deletePasskey mutation ● renamePasskey mutation
Member Of
CurrentUser object


