UNPKG

@graphql-mesh/transport-neo4j

Version:
17 lines (16 loc) 649 B
import neo4j from 'neo4j-driver'; export function getAuthFromOpts(authOpts) { if (!authOpts) { return { scheme: 'none', credentials: '' }; } 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); } }