Battery included, Schema-aware binding between LDAP and Graphql
import { initial } from "ldap-graphql";
const connectionInfo = {
baseDN: "DC=DOMAIN,DC=COM",
user: "",
pass: "",
ldapServerUrl: "",
};
initial({ connectionInfo }).then(({ url }) => {
console.log(`Server started on ${url}`);
});
Generated using TypeDoc