- Add
AutoQueryConfigfor auto-generatingby_idandby_filterqueries for SQLModel entities by_id: find a single entity by primary keyby_filter: filter entities by field values with auto-generatedFilterInputtype- Pass
auto_query_configtoGraphQLHandlerto enable; handler discovers all entity subclasses automatically - Update README.md with Auto-Generated Standard Queries documentation
- migrate from mcp to fastmcp
- Update README.md to emphasize rapid development of minimum viable systems
- Add 30-Second Quick Start section for quick onboarding
- Embed GraphiQL HTML template into the library
- Add
get_graphiql_html()method toGraphQLHandlerwith configurableendpointparameter
- add
allow_mutationoption tocreate_mcp_serverto enable mutation support in the generated GraphQL server. This allows clients to perform create, update, and delete operations on the data models defined in the SQLModel schema.