Expand description
Field name case conversion (camelCase → snake_case).
This module handles converting GraphQL field names (typically camelCase)
to PostgreSQL column names (typically snake_case) to match Python behavior.
Functions§
- normalize_
field_ path - Normalize a field path for database access.
- to_
camel_ case - Convert
snake_caseto camelCase. - to_
snake_ case - Convert camelCase or
PascalCasetosnake_case.