ilija

Results 43 comments of ilija

you can just use the where clause inside Invoice_aggregate, ```Invoice_aggregate(where: { BillingState: { _neq: null }, BillingPostalCode: { _neq: null } })```

I will bump this. I totally agree with @spion that specifying the input type is really error prone and should be automatically inferred (with help of the introduced scalars). If...

I noticed, I will raise a issue there. Thanks Edit: https://github.com/lelylan/simple-oauth2/issues/399

An example could be very helpful in this situation: > With lists, the above situation looks like this: > > user fetches the array of resources with a network request,...

Same bug exists on 2.8.4 & 2.10.0. This is a severe issue since makes cli-migrations-v3 image kind of useless when having triggers set.

This is a limitation of postgres. The only way to achieve "commit" sequence is to use a lock which means that you are limited to a single writer at the...

@elgordino I am following this topic and I also implemented a similar notify table. I will give you some recommendations how you can fix your problems. First you can generalize...

At least once is not possible with hasuras stream subscriptions since it requires an acknowledgement from the receiving side and is more suitable for server to server scenarios (see message...

The solution mentioned by @tirumaraiselvan won't fix they issue of @elgordino since his transactions taking a long time and the lock is released when after transaction commit. Advisory lock per...