Jonathan Gamble
Jonathan Gamble
> Just keep in mind that "native support" is [impossible](https://vercel.com/guides/do-vercel-serverless-functions-support-websocket-connections) (afaik) for any serverless deployment, such as [vercel](https://vercel.com/). It is definitely **NOT** impossible for serverless technologies to support a version...
Ok, got it working by making a custom component: **chips-input.svelte** ```svelte import TextField from '@smui/textfield'; import Chip, { Set, Text, TrailingAction } from '@smui/chips'; export let input: string[] = [];...
I think it is a bug with TrailingAction, so I just styled it `color: white`. J
So you would need to think about nested updates as well for inserts, although your CASCADE settings should take care of most of this. Here is how Hasura does it:...
> @wolfgangwalther - How would this work with a `PUT` or update? J
> > @wolfgangwalther - How would this work with a `PUT` or update? > > J > > I think that would just be a matter of adding some `ON...
So I think creating the virtual column mutations would definitely be the first step here, and could potentially be a work around for [transactions](https://github.com/PostgREST/postgrest/issues/286). For a trivial example with **tags**:...
This is definitely a huge problem. If Angular Universal (not Angular) does not support Edge Function deployment, which is a Deno deployment, it will never truly be able to compete...
@piyushpranjal03 - Hi Pi, I wrote that guide :) The reason it takes 2-3 seconds, is because Vercel itself is Serverless using AWS Lambdas under the hood. It only takes...
@alan-agius4 - I think a lot of people use Vercel for their projects, which is why this is a problem for me specifically. Perhaps there could be a `deno`, `bun`,...