cramatt

Results 13 comments of cramatt

Tried upgrading yarn, no luck. Tried running the yarn command instead of npx, **success**! `yarn create grandstack-app` works, suggesting there is still a bug with the script?

To further clarify, Apollo Server 3.5.x is required. Here is their migration guide: https://www.apollographql.com/docs/apollo-server/migration/ And here is the issue tracking that GraphQL 16 supports is added to 3.5.x and later....

Here is another example use case, currently not possible but seemingly common: ```graphql type Design { pv_count: Int @cypher(statement:""" MATCH (this)-[:HAS_SYSTEM]->(p:PressureVessel) RETURN count(p) """) } ``` ````graphql { designs(where:{pv_count_GT:0}) {...

@dmoree ah, ok, so its supported (although in a different way than unions) and I missed it in the docs - thanks for pointing me in the right direction. However...

Maybe related to https://github.com/neo4j/graphql/issues/1049 ?

I'm having this issue too, trying to use https://github.com/KELiON/redux-async-initial-state/issues/15. Any suggestions @gajus ?

Looks like the issues stems from using `redux-immutable`, which expects initial state to be instance of Immutable, so in this libraries case we return a Promise which results in error....

As @alico-cra noted, I'm able to recreate this issue if I define a custom node AND link. With link only example (the text-label @vasturiano pointed to) I don't see the...

Thank you @dmontagu - this does indeed work! Looking at the docs I missed https://docs.pydantic.dev/latest/usage/type_adapter/. I believe it would be worth while to consider some docs updates to help others...