Phuong Phally (ភួង ផល្លី)

Results 26 comments of Phuong Phally (ភួង ផល្លី)

I have some issue . Resolve by add ```static ``` before method ``` static void downloadCallback(String id, DownloadTaskStatus status, int progress) ```

@AllenFang I like you package much . But I don't know how to help you dev this feature . I really need it . Thanks

I setup version `0.3.28` with existing project then it works fine, But after I change version from `0.3.28` to `0.3.33` ## Error response Duplicate type from the entities `graphQLSchemaFactoryBean' threw...

@igdianov I use one entity manager. Do you have any ideas to help me?

@negesti You said right. we define it. But the last version of `0.0.28` works well.

@negesti Thanks answer quickly to answer. 1) Your AS "Changing the property name to "codeValue" should fix that. " Sorry this answer I'm not clear. I have CodeValue Class in...

@igdianov I'm still can not be fixed it. `You have redefined the type 'AppUser' from being a 'GraphQLObjectType' to a 'GraphQLScalarType' ` If I change method `getGraphQLTypeFromJavaType` it work with...

@igdianov I'm sorry I can not find the problem with custom objects. But what I found an issue on the library since upgrade from version `0.3.28` to version `0.3.29` You...

@igdianov It is errors from `.fields(getTransientFields(entityType.getJavaType())` if I comment it out it work fine ```java private GraphQLObjectType computeObjectType(EntityType entityType) { return GraphQLObjectType.newObject() .name(entityType.getName()) .description(getSchemaDescription(entityType.getJavaType())) .fields(getEntityAttributesFields(entityType)) // .fields(getTransientFields(entityType.getJavaType())) .build(); } ```

@igdianov I found the problem because of method `isTransient()` no `@Transient` check Current is ```java public boolean isTransient() { return !attribute.isPresent(); } ``` Change to ```java public boolean isTransient() {...