Nikita Boldasov
Nikita Boldasov
After rethinking of #355, I came to a conclusion that it'd be useful to have the following approach to work with slices and maps in Kong: A slice or map...
Add `client.SetContext` similar to `client.SetHeader` (Client method)
E.g. we have an app in `cmd/` and a couple of code generators that generate code used in the app. Where should we put those generators?
Call: `HelperFunc([]string{"a", "a"}, "b", 8)` Result: `[]string{"a", "a", "b", "b", "b", "b", "b", "b"}` Call: `HelperFunc([]string{"a", "a", "a", "a", "a", "a", "a", "a"}, "b", 8)` Result: `[]string{"a", "a", "a", "a",...
https://github.com/goccy/go-yaml The library preserves the order of fields when converting from YAML It should fix deepmap/oapi-codegen#458
**Describe the bug** On the following request: ``` http://127.0.0.1:9080/fhir-server/api/v4/$cql?expression=[Observation] o return (o.code.coding c return c.code)&subject=Patient/example ``` I got the following error: ``` { "resourceType": "OperationOutcome", "id": "ac-12-0-6-8d388349-82af-4f17-8e77-a0d4c0eb5f79", "issue": [ {...
**Describe the bug** `PUT [base]/[type]?[search parameters]` Such requests either update the record if "id" is provided in the request body or create a new record if "id" isn't provided. **Environment**...
### Preflight checklist - [X] I could not find a solution in the existing issues, docs, nor discussions. - [X] I agree to follow this project's [Code of Conduct](https://github.com/ory/kratos-selfservice-ui-node/blob/master/CODE_OF_CONDUCT.md). -...
### Game and System Information - **Version:** 1.16.3 - **Downloaded from:** Arch Linux repository - **Build info:** x86_64 - **OS:** Arch Linux ### Description of the bug While Mersenne Twister...
There's `Count` method that is generated for a table: ```go Count(ctx context.Context, exec boil.ContextExecutor) (int64, error) // performs COUNT(*) ``` It'd be useful to have `CountDistinct` method: ```go CountDistinct(ctx context.Context,...