greemo
greemo
Great, +1, the comma use for multiple implementation on the output schema breaks my automation flow, as I must manually convert the commas to &s.
Yeah, I can call the API no problem, with the following operation definition: ``` mutation deleteItem($id: Int!) { object: ns_deleteItems(ids : [$id]) { id } } ``` but the result...
I'll start by setting up my dev environment for the codebases, and creating a unit test for the go part of the code. If I have any issues, I'll PM...
Hi Jens, thanks for the quick response. In GraphQL, one can have different semantics for non-inclusion vs inclusion as null. Therefore I believe the default should be to pass nulls...
Yes, this is the reason I meant. Regarding performance, I meant doing the filtering in the Go code instead of in the Node hooks, where it could also be done....
Thanks Marti, Running ` ego --user=user_2 bash` and then running teams from there worked perfectly. Now I can log into multiple teams accounts simultaneously on Linux, thanks!
FYI: `ego --sudo --user=user_2 teams` works, but I get the following output on the console: X Error of failed request: BadName (named color or font does not exist) Major opcode...
It's to close the db session. I use sqlalchemy in Async mode. close() is an Async method, and I only want to close it once the request is complete 19...
I'm not talking about the connection, I'm talking about the session. We should have a new session every request so the cache is flushed per request.
Hmm, I see querying the DB as being definitely related to executing a query. It is a bit strange that I need to bury by db session in the Request...