Anas H. Albarghouthy (Anas Barg)
Anas H. Albarghouthy (Anas Barg)
# Embed GraphiQL in docs We need to embed GraphiQL inside the docs for examples so users can see and try the generated server. ## Why Because I think Pragma...
# Custom events and custom queries ## Why This will be a generic solution for developers to implement custom GraphQL operations, and custom events. Not "just" CRUD, though I believe...
Since we know the shape of SQL queries in `PostgresQueryEngine` we can create indexes to speed up join queries significantly on `PostgresMigrationEngine`
Currently, we can do something like this: ``` model User { @1 username: String @primary @2 currentTodo: Todo? @3 todos: [Todo] } model Todo { @1 id: String @uuid @primary...