Cies Breijs

Results 37 issues of Cies Breijs

Would it be possible (without using kotlin-reflect)? All the manual unwrapping (outside of the SQL query string) or adding `${Param.withSer(productId, ProductIdSerializer)}` look overly boilerplaty.

In case you are selecting one specific row (e.g. filtering based on an id in a unique column). Or is there a good reason not to have this?

In https://github.com/ExoQuery/terpal-sql/issues/11 I outline that I do not need coroutines, and how I removed the `runBlocking { ... }` calls from the call-sites. Now I've gone a bit further in...

What is the equivalent of these "db scopes" in Jdbi and JDBC, in terpal-sql? ```kotlin jdbi.open().use { db -> val orgDao = dbtx.attach(OrganizationDao::class.java) val orgs = orgDao.listOrganizations() // ... }...

I found that `terpal-sql` has a dependency on `sqlite-jdbc`. Since I do not use sqlite, I excluded it: ```kotlin api("io.exoquery:terpal-sql-jdbc:$terpalSqlVersion") { exclude(group = "org.xerial", module = "sqlite-jdbc") } ``` My...

**Describe the bug** Schema inspection on the Pokemon GraphQL from the plugin works like a charm. Changing it to the Shopify GraphQL API endpoint and inspecting again results in an...

Currently SpringBoot's httpClient and Ktor+OkHttp are supported. Since I'm not using Ktor, and it brings in quite a few dependencies (including `kotlin-reflect`), I wonder if it is also possible to...