Marcel Overdijk
Marcel Overdijk
thx @gastaldi , maybe `smallrye-graphql` can take the same approach @jmartisk @phillip-kruger? That way we would also have the plugin to the Gradle Plugin Portal.
@phillip-kruger I've created PR #279 but it is only a part of getting the plugin published. I've not used Github actions before so I feel a bit uncomfortable. Also [an...
@phillip-kruger thx for merging the PR. what do you think about creating the Gradle Plugin Portal account?
I think we need to do: - Updating `gradle.properties` automatically after the `release:prepare` goal as @jmartisk mentioned: https://github.com/smallrye/smallrye-graphql/pull/279#issuecomment-638847917 - And the running `gradle publishPlugins -Pgradle.publish.key= -Pgradle.publish.secret=` as build step and...
Hi @phillip-kruger I’m leaving on holiday tomorrow so it will be at least after my holidays...
PS: I don't need this myself, but I came across it and it might be useful to have something similar in the future.
Hi @rstoyanchev #258 already helps a lot to be honest. Having support for custom argument resolvers - like in e.g. MVC - I could do even more. Besides binding the...
I understand. For me it's about having more control to which default value to set in the argument resolver; it's coming from https://github.com/spring-projects/spring-graphql/issues/250
I bumped on this issue as I was wondering if form2js would support with data types. I wonder what the status is of this issue and implementing it. One thing...
Actually I was looking for something similar.. Same as relay integration: ``` posts: t.relatedConnection('posts', { cursor: 'id', }), ``` I was hoping to do something like: ``` posts: t.pagedRelation('posts', ..),...