Marcin Kowalczyk
Marcin Kowalczyk
Operation request: Remove Diacritics (with replacing letters) / Remove non-latin letters / Latinize
## Summary Remove diacritics and replace non-latin characters with latin equivalents. ### Example Input ``` ĄĆĘŁŃÓŚŹŻ ąćęłńóśźż æ ø ``` ### Example Output ``` ACELNOSZZ acelnoszz ae o ``` ##...
I would like to ask about support matching Java methods of resolvers (queries, mutations) to schema files (`*.graphqls`). Example (based on [How To GraphQL tutorial with graphq-java](https://www.howtographql.com/graphql-java/2-queries/)): I've created a...
# Preface To link to specific file in README.md we have some several ways ([#1](https://docs.github.com/en/github/creating-cloning-and-archiving-repositories/about-readmes#relative-links-and-image-paths-in-readme-files), [#2](https://docs.github.com/en/github/creating-cloning-and-archiving-repositories/about-readmes#relative-links-and-image-paths-in-readme-files)): #### 1. Link to latest version of file in specific branch: ``` https://github.com/mkczyk/test-experiment/blob/master/index.html ```...
## What works Enum directly in the controller. ``` public enum SomeEnum { @ApiEnum("First Option") A, // @ApiEnum("Second Option") B, // C } ``` ``` @PostMapping("/some") public void someMethod(@ApiParam("Some description.")...