Register all graph dialects into the ORM's DialectRegistry.
DialectRegistry
Wiring (one line, added by whoever owns the registry/bootstrap — NOT done here to avoid editing shared files):
import { DialectRegistry } from './dialects/dialect';import { registerGraphDialects } from './graph';registerGraphDialects(DialectRegistry); Copy
import { DialectRegistry } from './dialects/dialect';import { registerGraphDialects } from './graph';registerGraphDialects(DialectRegistry);
Register all graph dialects into the ORM's
DialectRegistry.Wiring (one line, added by whoever owns the registry/bootstrap — NOT done here to avoid editing shared files):