Ramnivas Laddad

Results 97 issues of Ramnivas Laddad

Looking at our fullOptJS output, I see many instances of "This component has already been built into a ReactElement, and cannot be reused". While probably gzipping will take care of...

enhancement

Instead of dropping and recreating the public schema, we migrate to an empty system. This ensures that the wiping logic considers non-public schemas and tables.

Currently, we statically load Clerk, Auth0 code. This makes the bundle bigger and adds to the initial load time. Instead, we could load these libraries dynamically when we need them.

For query definitions that return a collection, the skeleton generated doesn't include the generic type and doesn't map the collection type to its TS equivalent: ``` query searchDocuments(searchString: String, @inject...

Currently, we allow only types defined in Deno modules to be, for example, return type of a Deno query. This is somewhat restrictive in a few scenarios. For example, if...

This will need to be broken into multiple issues. One way to implement subscription (high-level summary): - Use [pg_notify](https://www.postgresql.org/docs/current/sql-notify.html). - Upon receiving a subscription request: - set a trigger on...

P2
Postgres

Consider: ``` { concerts { id venue { id } } venue(id: 1) { id name } } ``` We should to run the `concerts` and `venue` query in parallel....

performance
P3

Consider a model with Team -> Player*. We need to support the create and update mutation to set the players (helpful when updating the team from UI) ```graphql mutation {...

P2
Postgres

Correct behavior of `exo playground` requires that the local model match with that deployed to the server pointed by the `--endpoint` argument. We should check that the schema of the...

devexp