Xianzhen

Results 6 comments of Xianzhen

```java package com.castlery.roma.grpc.config.grpc; import com.castlery.echo.v1.EchoServiceGrpc; import java.util.ArrayList; import java.util.List; import net.devh.boot.grpc.server.security.authentication.BearerAuthenticationReader; import net.devh.boot.grpc.server.security.authentication.GrpcAuthenticationReader; import net.devh.boot.grpc.server.security.check.AccessPredicate; import net.devh.boot.grpc.server.security.check.AccessPredicateVoter; import net.devh.boot.grpc.server.security.check.GrpcSecurityMetadataSource; import net.devh.boot.grpc.server.security.check.ManualGrpcSecurityMetadataSource; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.security.access.AccessDecisionManager; import org.springframework.security.access.AccessDecisionVoter; import...

I try to provide my own authentication provider and this worker out. So Authentication manager is necessary for grpc authentication?

> Using interface in input and encounter the same problem: > > ```graphql > interface VisualScope {} > type VisualScope_Public implements VisualScope { > } > type VisualScope_Private implements VisualScope...

@vojtapol , I have this problem too. Is there any hack method to fix this problem?

My schema looks like this: ```graphql type ActivityLog { id: ID name: String eventTime: DateTime attachments: CommonAttachment } type Case { id: ID number: String attachments: [CommonAttachment] } ``` -...