Ramnivas Laddad

Results 97 issues of Ramnivas Laddad

See conversation in PR #327. Specifically by @tekul: > I mentioned it in the commit message but it's tricky to convert the cleanup code to be asynchronous. Currently the Drop...

hygiene
P3
Postgres

Check access_solver::literal_column. We are doing ` Value::Number(v) => Column::Literal(Box::new(v.as_i64().unwrap() as i32))`. The `as i32` part doesn't seem right.

hygiene
P2

Consider: ```clay model Venue { id: Int @autoincrement @pk name:String main_events: [Concert] @column("main_venue") ticket_events: Set @column("ticket_office") } ``` We get the following error message: ``` error[S000]: Unexpected token: "model_kind" -->...

parser
P3

We should support compound primary key using multiple fields marked with the `@pk` annotation. ```clay model Enrollment { student_id: Int @pk class_id: Int @pk } ``` Here, we should treat...

P2
Postgres

Check the `AuthUser` - `Membership` relationship (in the concert management app). When adding a new membership for an existing `AuthUser`, we will like an API `createMembership` that can refer to...

P3

Depends on the outcome of #252. Currently, the `where` expressions can get quite hairy (especially when you use `or`, `and` etc). If we could support a filter using CEL, we...

P3

Assume the initial model to be `model0` (such as one found in integration-tests/basic-model-no-auth/concerts.clay). If we do the following operations: 1. `exo schema create | psql test-db` 2. `exo schema import...

P3

See comment at the top of interception.rs for details.

P3

Currently, we piggyback on `AstExpr` puts quite a bit restrictions. For example, we can’t say !(“mutation *X”), since “Not” expects a boolean or can't express `query * || mutation *`....

P3

This will allow uploading/downloading audio files, photos, etc. A good demo to implement will be uploading photos to S3 and displaying those. This Deno package might help (https://deno.land/x/[email protected])

P3