Alex

Results 41 issues of Alex

We usually use cursor pagination instead of offset pagination, as the performance is better https://dev.to/jackmarchant/offset-and-cursor-pagination-explained-b89

enhancement

An example of implicit join can be found in JOOQ library ``` create.select( BOOK.author().FIRST_NAME, BOOK.author().LAST_NAME, BOOK.TITLE, BOOK.language().CD.as("language")) .from(BOOK) .fetch(); ``` https://www.jooq.org/doc/3.12/manual/sql-building/sql-statements/select-statement/implicit-join/ https://blog.jooq.org/2018/02/20/type-safe-implicit-join-through-path-navigation-in-jooq-3-11/

enhancement

Is it possible to use this library with Java language? It will increase the popularity if it will possible to use it also in Java and have Kotlin DSL

Add a library that provides catnap support in Micronaut applications. https://github.com/micronaut-projects/micronaut-core

enhancement

We use approach API first, so we do not generate OpenAPI schema, we write it manually, this allow us to use any library, and do not wait when schema generation...

type: enhancement

Sometimes Apple can add some new properties to APS object. In order to be able to use that new properties as soon as possible it will be good to add...

How to check if notification was sent successfully? ``` com.notnoop.apns.ApnsService service = APNS.newService() .withCert(...) .withAppleDestination(true) .build(); ApnsNotification response = service.push(token, payload); ``` response should be null? it throw an exception?...

Something is weird. This pull request can't fail. https://github.com/notnoop/java-apns/pull/299 https://travis-ci.org/notnoop/java-apns/builds/121367621

https://swagger.io/docs/specification/data-models/inheritance-and-polymorphism/ Where can I find a full example of swagger.json about discriminator?

For example https://github.com/micronaut-projects/micronaut-predator/blob/master/examples/example-jdbc-kotlin/src/main/kotlin/example/repositories/PetRepository.kt#L20 here `@Join` can be deduced, because `owner` in `Pet` object is not nullable, it should be passed to constructor, so we for sure need to join in...

info: good first issue
type: enhancement