Jamie Winder

Results 15 comments of Jamie Winder

Thanks. I had tried that (successfully) but I want the URLs to be relative to my page rather than the root. I can't assume which URL the app will be...

Did you solve this? I had the same issue and it turned out I had multiple react-dnd libraries of different versions being bundled in my app. Hopefully this helps someone.

I've got just little utility I use which relies on `keepAlive` as-is: ```typescript function onBecomeObservedKeepAlive(target: object, property: string) { onBecomeObserved(target, property, () => keepAlive(target, property)); } ``` This is only...

@NaridaL - at the time, the behaviour of keep alive was such that applying it meant the computed would be resolved immediately as if something was always observing it. In...

I'm trying to do the same thing at the moment, but I want the duration and distance of the 'fastest' route, not the distance of the shortest which I'm assuming...

I may have just encountered this issue when using an array of primitives (`int[]` in this case)? Using the following type extensions: ``` extend type User { roles: [Role] @delegate(schema:...

@PascalSenn Sure thing, it's simply: ``` type User { userId: Int! name: String! roleIds: [Int!]! } ``` And, if helpful, this is the `roles` query operation referred to in the...

I'm looking into the same issue. Is there a way to do this?