Configuration

Overview

Configuration reference for Nest Graph Inspector.

Nest Graph Inspector is configured through the forRoot or forRootAsync static methods on the NestGraphInspectorModule.

Example

root.module.ts
import { Module } from '@nestjs/common';
import { NestGraphInspectorModule } from 'nest-graph-inspector';

@Module({
  imports: [
    NestGraphInspectorModule.forRoot({
      outputs: [
        { type: 'viewer' }
      ]
    }),
  ],
})
export class RootModule {}
Nest Graph Inspector · MIT License · © 2026