Rich Evans
Rich Evans
I added ```ts onBlur={() => { editor.sendCursorPosition(null); }} ``` to the Editable component and this does seem to clear the cursor position when the editor loses focus, however on focus...
I'm seeing the same issue and now CI is failing all buddy builds.
I'm working on a system for our datamodel which required idempotent insertion of data and had to hand write all the upsert mutations by hand. It's not a huge deal,...
Updating `make-augmented-schema.ts` to add a `values` field returning a corresponding type array, and adding a check for `operator == "values"`, in which case operator is replaced with `collect`, in `translate-aggregate.ts`...
The `numerical` and `id` resolvers do not currently handle resolving arrays of Ints, adding ``` if (Array.isArray(value)) { return value.map((v) => { if (isInt(v)) { return (v as Integer).toNumber(); }...
It's also possible to collect distinct values from array fields with something like ``` MATCH (n:Node) RETURN {things: apoc.coll.toSet(REDUCE(out = [], r IN collect(n.things) | out + r))} ```
Hey @darrellwarde, any update on this? I have many examples of places where I need to be able to sort results based on connected edges, for example, sort posts by...
I'm seeing this issue where the error from an invalid update is only providing one error message, despite multiple validation failures.
For anyone seeing this now, I do not see a handle leaking in my supertest jest tests to which I pass an already constructed express app instance.
Your codepen running in Firefox on MacOS shows an issue where the header and body of the DetailsList are scrollable, but scroll independently and the body scrollbar doesn't seem to...