Matthew Lothian
Matthew Lothian
I'd also like the ability to printout to file a schema that a client can use to call the server. Currently, it is full of these directives. As mentioned in...
Some documentation or examples around input fields would be very handy. I can't find any good example that explains how input models are generated.
[BaseAutoConfiguration.java](https://github.com/leangen/graphql-spqr-spring-boot-starter/blob/master/graphql-spqr-spring-boot-autoconfigure/src/main/java/io/leangen/graphql/spqr/spring/autoconfigure/BaseAutoConfiguration.java) defines the default (minimal) bean configuration for: ```java @Bean @ConditionalOnMissingBean public GraphQLSchema graphQLSchema(GraphQLSchemaGenerator schemaGenerator) { return schemaGenerator.generate(); } @Bean @ConditionalOnMissingBean public GraphQL graphQL(GraphQLSchema schema) { GraphQL.Builder builder = GraphQL.newGraphQL(schema);...
I'm looking into something similar. I am trying to secure web socket requests by introspecting the authorization header sent on the `connection_init` request and then populate the DefaultGlobalContext with the...
As a workaround, I have to reimplement and disable `SpqrWebSocketAutoConfiguration ` like so ```java /** * Reimplemented the io.leangen.graphql.spqr.spring.autoconfigure.SpqrWebSocketAutoConfiguration * make sure to set the property "graphql.spqr.ws.enabled" to false */...
I noticed that the dist folder is back in the repo? Generally I advise not to include build artifacts in the repo as it causes a mess of commits and...
@sheikalthaf Having looked through the code. I would assume this would cause quite a branching in the implementations, ss it affects the touch logic and the slide transitions. This could...
I think what is mean here is that the carousel does not adapt its height to the current slides height, it will always be as high as the highest image...
@di3orlive For me the following does the trick, minus a smooth transition between heights set the position to absolute for the non active slides ```css ngx-item img { width: 100%;...
A [peer dependency](https://nodejs.org/en/blog/npm/peer-dependencies/) is probably what you want with a minimum supported version specified.