Christian Beikov
Christian Beikov
@dsarlo-viso was so kind to provide a sample project that showcases the use of the new Spring GraphQL module: https://github.com/dsarlo-viso/blaze-spring-for-graphql-example We should try to learn from this and create an...
In 1.7 we will switch to Java 11 as minimum.
There are use cases where entity views contain a list of strings as a comma separated string (also see #104 ). What kind of filter or sorting can we support...
This is one of the best fitting use case for Blaze-Persistence (Core, GraphQL, Entity-Views) and Blaze-Expression, yet we still have a few missing pieces. Let's build a GraphQL example and...
From the question https://github.com/Blazebit/blaze-persistence/discussions/1496 We can see an error: ``` The initialization of the static metamodel class 'nz.co.submitkit.blazeviews.AppointmentView_' failed: java.lang.IllegalArgumentException: Can not set static com.blazebit.persistence.view.metamodel.MethodListAttribute field nz.co.submitkit.blazeviews.AppointmentView_.serviceCodes to com.blazebit.persistence.view.impl.metamodel.attribute.MappingMethodSingularAttribute ```...
Certain users would like to provide filtering mechanisms also for views that do not expose certain data through attribute mappings. So far, the way to go here is for users...
An entity with a mapping like e.g. ``` @OneToMany(mappedBy = "..") List entities; ``` seems to be problematic when using `SIZE` in e.g. `@Mapping("SIZE(entities)")` because it renders `COUNT(INDEX(entities))`
I just noticed that the following entity view ``` @EntityView(Alias.class) public interface AliasView { @IdMapping Long getId(); String getAlias(); } ``` will result in a query like `select alias.id, alias...
Quarkus has a GraphQL extension and I'd like to have a sample application and maybe a blog post about the use of GraphQL with Entity-Views. I hope that our existing...
SmallRye GraphQL and SPQR have out of the box annotation support for directives: * https://github.com/smallrye/smallrye-graphql/blob/main/server/api/src/main/java/io/smallrye/graphql/api/Directive.java * https://github.com/leangen/graphql-spqr/blob/master/src/main/java/io/leangen/graphql/annotations/GraphQLDirective.java It would be nice if we could add an overridable method to `GraphQLEntityViewSupportFactory`...