Ben M

Results 15 issues of Ben M

I created a React app with create-react-app and Typescript and MDX. I used ``` npx create-react-app my-app --template typescript npm i @craco/craco npm i @jackwilsdon/craco-use-babelrc npm i @mdx-js/loader ``` Then...

I created a pull request in the DefinitelyTyped repository: https://github.com/DefinitelyTyped/DefinitelyTyped/pull/31953 It's basically working, but some things could be nicer (or better typed): 1. Generics for `Spec` and `Result` 2. Typings...

```ts const data = { foo: undefined // because it is optional, but it could contain an object: // foo: { // bar: 42 // } } ``` Now I'd...

I want to validate a single (non-object) value, like this: ```js spected( [[ isNotEmpty, "must not be empty" ]], "foo" ); ``` I get the following error: ``` Uncaught TypeError:...

With SerializationFeature.WRITE_DATES_AS_TIMESTAMPS it's possible to output date and time data as ISO 8601, but there seems to be no way to only accept date and time data in ISO 8601...

date-time-config

I just created two `@Service`s with clashing method names: ``` @Service @GraphQLApi public class MyService1 { @GraphQLMutation public String foo() { return "1"; } } @Service @GraphQLApi public class MyService2...

enhancement

Is it somehow possible to use objects instead of classes? I want to use `graphql-java-annotations` with Spring Dependency Injection. I want to use something like the following code: ``` @SpringBootApplication...

enhancement

After upgrading from fullcalendar 3.10.1 to 3.10.2 (Release: https://github.com/fullcalendar/fullcalendar/releases/tag/v3.10.2 ) I get the following error: ``` TypeError: calendar.fullCalendar is not a function at Scope.scope.initCalendar (calendar.js:265) ``` In angular-ui-calendar 1.0.2 source...

Currently it's very hard to use custom Value Objects with ID Scalars. Or in general: to provide custom serialization for any kind of generics / class inheritance. Schema: ```graphqls type...

status: feedback-provided
status: waiting-for-triage

**Affects:** 6.0.0.M5 (but also 5.x) --- I'm trying to get an immutable representation of the query parameters in my `@RestController`, like this: ```java @RestController public class MyController { @RequestMapping("/foo") public...

status: waiting-for-triage
in: core