GraphQL Inspector - Audit Expert knowledge of GraphQL Inspector's audit command for analyzing operation complexity and identifying potential performance issues. Overview The audit command analyzes GraphQL operations to provide metrics about query depth, directive count, alias count, and complexity. This helps identify operations that may cause performance issues before they reach production. Core Commands Basic Audit Audit with Schema Metrics Analyzed Query Depth Measures the maximum nesting level of a query: High depth operations can cause: - Slow database queries (N+1 problems) - Memory pre…