LoadSecretResponse
Response returned after attempting to fill a credential resolved from a 1Password integration. The resolved value is never included in the response.
type LoadSecretResponse {
ok: Boolean!
error: String
message: String
time: Float
}
Fields
LoadSecretResponse.ok ● Boolean! non-null scalar
Whether the credential was resolved and filled into the target element.
LoadSecretResponse.error ● String scalar
Error code when ok is false: DomainNotAllowed, SelectorNotFound, NoFocusedElement, TargetNotFillable, CredentialNotResolved, CredentialIntegrationExpired, VaultUnreachable, or AuditWriteFailed.
LoadSecretResponse.message ● String scalar
Human-readable explanation when ok is false.
LoadSecretResponse.time ● Float scalar
The amount of time, in milliseconds, the operation took.
Returned By
loadSecret mutation