Marcel Overdijk

Results 83 issues of Marcel Overdijk

`spring-graphql` auto-configuration already supports picking `Instrumentation` beans and registering them in the `GraphQlSource`. So it's just a matter of creating an instrumentation bean and it works 👍 One of the...

type: enhancement
in: core
status: pending-design-work

Is it possible to disable the automatic xjc generation as part of `processResources`?

In the jquerymobile implementation the app is bootstrapped in main.js using `$(document).ready(function () { .. }` However the JQM docs state clearly to not use $(document).ready() but use $(document).bind('pageinit') instead....

I'm trying to create a resource containing a relationship with links. Note that this particular relationship has no `data` and `meta` which is is valid according to the spec as...

When updating a resource by sending a JSONAPI document via a HTTP PATCH, is it possible to determine which fields were not part of the request body? E.g. if I...

As per the jsonapi spec how to handle [sparse fieldsets](http://jsonapi.org/format/#fetching-sparse-fieldsets) and user-defined [inclusion of related resources](http://jsonapi.org/format/#fetching-includes) is documented. Would you consider adding these to jsonapi-converter? If you are interested we...

And if not do you think it's possible to add feature for this. What I would like implement is a standard select like typeahead, where the user can only select...

When using the plugin with a `build.gradle.kts` Kotlin build script and setting: ``` azureWebApp { appName = "" // TODO pricingTier = "" // TODO resourceGroup = "" // TODO...

Having an application.properties file with: ``` %prod.my.username=${sm//MY_USERNAME} ``` Injecting it with `@ConfigProperty` it works: ``` @ApplicationScoped public class MyHeadersFactory implements ClientHeadersFactory { @ConfigProperty(name = "my.username") Optional username; .. ``` but...

I don't know if this the right channel to ask this question, but as I could not find a dedicated forum I will do it anyway :-) As I can...