codewarrior
codewarrior
> Each middleware that needs to bubble up information from handlers downstream needs to create their own storage in the context, e.g. a pointer to a value that will be...
> Hi @koote , How long does your job usually take to complete? You can find out by querying `kube_job_status_completion_time{job_name=my-job*}-kube_job_status_start_time{job_name=my-job*}`. If the duration is too short (e.g., several seconds) and...
``` bool isOneEditDistance(string s, string t) { if (s.length() > t.length()) // make sure s the shorter one { swap(s, t); } if (s == t || t.length() - s.length()...
@hgiasac That is too deep and too low level, means I need to manually create a graphql.Client based on a mock HTTP client, can we add an interface to graphql.Client...
The interface is what I am looking for, but I cannot use it because currently `graphql.Client` now is a struct not an interface, for example, this is my client code:...
That means I need to define an interface and wrap the `graphql.Client` within my project, I am thinking it is a bit not clean solution. But finally I managed to...
Or, is there a way to pass in a full filter string when query?
first part is the filter, second part is the query struct, not very complicate i think?