Delaney
Delaney
Is this a case of sqlBatch using `JOIN` instead of `LEFT JOIN`? How would I control that behavior?
[In the docs](https://join-monster.readthedocs.io/en/latest/batch-many-many/) I see ```ts sqlBatch: { // the matching column in the junction table thisKey: 'follower_id', // the column to match in the user table parentKey: 'id', //...
@ChaosCA did you ever find a solution or workaround?
> @Yamashou I got it working by using a slightly modified websocket client from hasura: https://gist.github.com/maaft/ac197c72fe5d18eec5916f3f5a75943f > > How to use with generated structs (generated.SubscribeProjectsQuery, generated.SubscribeProjects): > > ```go >...
@bruth it may sound crazy, but why not 'just' use git? If you are doing branches and merges it seems to fit the bill better.
I was using EventStore's as an example of an API for querying events and using projections; not actually recommending it for this use case. For example it wasn't clear from...
brace for rambling... I have a few use cases actually. 1. A regulatory constrained application at work where data has to be local to the regional office 1. Personal stuff...
Missed quite a bit of detail. Since it wasn't covered in the talk or simple example didn't realize that there was the `StreamReader` interface that does what I was thinking....
Look at the StreamReader, you get back all events in global order across aggregates. However if you have multiple aggregate types it breaks down. The stuff I'm considering doing in...
Right, from the talk they are relying on other parts of AWS to handle the event bus related functionality. Its not a complete CQRS style framework/lib, just the basics of...