Type Alias RemoteGraphAuth
RemoteGraphAuth:
| { password: string; realm?: string; type: "basic"; user: string }
| { token: string; type: "bearer" }
| { ticket: string; type: "kerberos" }
| {
credentials: string;
parameters?: Record<string, unknown>;
principal: string;
realm: string;
scheme: string;
type: "custom";
}
| { type: "none" }
Auth discriminant. Covers the full Neo4j auth matrix.