
SeedQL
Schema-aware test data that actually feeds your Dev Tools
12 followers
Schema-aware test data that actually feeds your Dev Tools
12 followers
SeedQL reads your real schema, resolves the dependency order between tables, and generates realistic rows that insert cleanly at any volume. Straight into your own database, or export SQL, CSV, JSON.






Respect that SeedQL actually reads your schema and figures out the foreign key order before writing a single row. Way too many seeders just dump rows and hope for the best.
@usergroup Thanks, that is the part I care most about. It runs a topological sort over the FK graph (Kahn's algorithm) and generates parents before children, with alphabetical tie-breaking so the ordering is deterministic and a given seed reproduces the same dataset every time. Cycles get detected and broken explicitly rather than silently producing orphans.