Christian Beikov

Results 214 issues of 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...

kind: enhancement
component: GraphQL
worth: medium

In 1.7 we will switch to Java 11 as minimum.

component: core
worth: high

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...

kind: enhancement
component: entity-view

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...

kind: enhancement
component: entity-view
component: GraphQL

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 ```...

kind: bug
workaround available
component: entity-view
worth: low

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...

kind: enhancement
component: entity-view
worth: high

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))`

kind: bug
workaround available
component: core
worth: medium

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...

kind: bug
component: entity-view
worth: medium

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...

kind: enhancement
help wanted
component: GraphQL
component: quarkus

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`...

kind: enhancement
component: entity-view
component: GraphQL
worth: medium