Krish

Results 47 comments of Krish
trafficstars

Any suggestions would be welcome.

A similar error here. In my case, I already had the files in plaintext in the repo, and then have removed and added the encrypted files in a branch. ```...

A related note: can we extend `kopf` to act as both a validating admissions webhook, as well as custom controller? This should be in the scope of this project? EDIT:...

Precisely. In Go, this is the `context`, or a `struct` with the values required.

I see that @dosco mentions in his talk at https://www.youtube.com/watch?v=gzAiAbsCMVA&t=1396s that this runs on a serverless platform. Is there a doc on how this is made performant and set up?...

Is there anyway to avoid the initial `single fast query`. This might be an issue for bigger schemas; and might avoid the one query to the db for making APIs...

@dosco I tried to write a small PoC using graphjin library, and pointed it to my currrent tables. It fails with the error `panic: postgres: foreign key column not found:...

To answer your question, @dosco: > Are you using multiple schemas? > Is this a foreign key relationship between tables in two different schemas? No, just a single one. As...

@dosco I think you are confusing one issue with another. The error I have mentioned above still exists, its a Graphjin library logic error. The fix you have done performs...

My `go.mod` looks like so now: ```go go 1.19 require ( github.com/dosco/graphjin v0.20.33-0.20221007075649-01d54ca2edb1 github.com/jmoiron/sqlx v1.3.5 github.com/lib/pq v1.10.7 ) ``` And the same error persists, although the ordering persists. I do...