Mike Lawlor
Mike Lawlor
After some more digging I am fairly confident the error is happening because the query used to generate the schema that `cacheExchange` uses is different from the query `devtoolsExchange` uses....
I too have need of a configurable `CodeUri` output to the template YAML file. My use case is that I'm using the AWS SAM CLI to invoke & debug my...
I'm also seeing several places where serverless variables are included in the SAM template that gets outputted. Sadly this makes the plugin pretty unusable for my/most non-trivial use cases. Is...
If I could chime in on this, there's also `jsconfig.json` for non-TypeScript projects, which works similarly: **jsconfig.json** ```json { "compilerOptions": { "baseUrl": "src" }, "include": ["src"] } ``` Will allow...
I guess this is more of an `@apollo/client` issue, but certainly relevant to this repo since a large percentage of svelte projects wouldn't have react installed. There's an open issue...
A quick chime in after I also lost about a day trying to get postgres+aurora-serverless-v2 working on SST. It seems that serverless V2 is the way forward for Aurora at...
@berenddeboer that's all quite understandable, but I wonder about the long term strategy for SST if we assume that AWS will eventually deprecate serverless v1?
> SST doesn't depend on RDS. That's just one use case. Given AuroraServerless v1 just supported Postgresql 13 I think there's some life left in it. True and knowing AWS...
I had the same question. Looks like Ion will eventually become SST v3 with some major breaking changes (eg. no more CDK) https://sst.dev/blog/moving-away-from-cdk.html
I'm trying to use this `filter` option on my Postgres embeddings table and getting an error: ``` operator does not exist: uuid = text ``` The column I'm trying to...