@graphql-mesh/transport-neo4j
Version:
14 lines (13 loc) • 570 B
JavaScript
import neo4j from 'neo4j-driver';
export function getAuthFromOpts(authOpts) {
switch (authOpts.type) {
case 'basic':
return neo4j.auth.basic(authOpts.username, authOpts.password, authOpts.realm);
case 'kerberos':
return neo4j.auth.kerberos(authOpts.base64EncodedTicket);
case 'bearer':
return neo4j.auth.bearer(authOpts.base64EncodedToken);
case 'custom':
return neo4j.auth.custom(authOpts.principal, authOpts.credentials, authOpts.realm, authOpts.scheme, authOpts.parameters);
}
}