Ben M

Results 54 comments of Ben M

Yeah, I agree, that the date time stuff is a huge topic. Right now, i guess a workaround could be to provide a custom set of date time deserializers, that...

Can you show me how this works? Some small piece of example code, where you use an `@Autowired` value / service to return data via GraphQL API. The tests of...

I already thought that you had used `BeanFactoryAware`. But the solution is in the end not very "Springish". I know that this is not your graphql-spring project, but the spring...

You also need to provide boolean props like `isError` and `isLoaded`, because you can have Promises that `resolve` (and/or `reject`) with `null` (or `undefined`). So you aren't able to tell...

Your example works for me. What's the code for your DataLoaders and how did you register them? ```java @Controller public class MyController { public MyController(BatchLoaderRegistry reg) { reg.forTypePair(String.class, Integer.class).registerMappedBatchLoader((values, env)...

@rstoyanchev Thanks for the response 😸 (Btw: Great docs and Spring YouTube Series 👍 ) Sure I'm using scalar type coercing. At the moment I use this code to (de)serialize...

> it's not very clear why you need to have both a Spring `Converter` in addition to the GraphQL scalar type coercion. @rstoyanchev I'll try to explain it in more...

I'm having a similar issue, but I'm not sure if a custom argument resolver can help: Schema: ```graphqls scalar ConnectionCursor type Query { books(after: ConnectionCursor): [Book] authors(after: ConnectionCursor): [Author] }...

I think I got the same issue: `mat-icon` displays only text when using `OnPush` in the parent component. When `OnPush` is removed everything works. Here's a Stackblitz example with angular...

Please reopen. This causes half of my application to rerender, just because some searchParams change. > `useNavigate` changes when the current location changes. But the current location is only relevant...