Skip to content

API -- Schema & Naming

The GraphQL schema is generated directly from the configured api names in tables, columns, and relations.

Table Mapping

For a table with API name <entity>:

  • <entities> → query collection
  • <entity> → query single row

Mutation Mapping

  • add_<entity>
  • edit_<entity>
  • delete_<entity>

Field Naming

  • Columns use their configured API names
  • Relations use their configured relation API names

Schema changes are reflected immediately after configuration changes.