Grant Forrest

Results 111 comments of Grant Forrest

My app interactions have changed a lot since I wrote that reply, but it would be something like this (using very simple pseudo code for updating the item state, stored...

Concept: JS-based resolver-centric, model-centric configuration ```ts const User = { sdl: gql` type User { id: ID! name: String! posts: [Post!]! } `, fields: { id: aqlId(), posts: aqlNode({ edgeCollection:...

Research results: only `WHERE` is allowed in list projections (https://github.com/opencypher/openCypher/issues/202). Ordering, skipping, limiting will all be blocked on better sub-query support (https://github.com/opencypher/openCypher/pull/217), but if that gets added to the spec,...

Next steps: - [x] Add `WHERE` clause support to `@cypherNode` and `@cypherRelationship` (#4) - [ ] Prototype allowing nested `@cypher` directives using `WITH` chaining

Hi @SpaghettiFactory ! I admit this project isn't really on my radar anymore, but here's how I remember it - Basically, without first-class subqueries, Cypher can't really support nested pagination....

I've had issues with this myself, but if you think about it, it's unclear how `postcss` could really support transformers like this. In the JSX code, the class name applied...

Agreed, it's baffling that DateTime can't parse any of the built-in string formats supplied by Javascript's own `Date`!

I apologize for not responding sooner, I must have missed the notification for this PR. This is certainly a significant contribution and I really appreciate you taking the time. I'm...

Ok, I updated this repo with som QOL improvements. Running tests in CI now. Will review in a moment.

The code already claims to do this. Need to reproduce to see why it didn't work.