Hi, thank you for all your information. I think I'll point them to the prod env for the moment.
Hey there, anybody using GraphQL with their RN application? Is there a library in the clojure ecosystem which supports translating a query written in GraphQL DSL to Clojure? Something like Artemis in the Dart ecosystem.
See this https://github.com/workframers/artemis specifically at parse https://cljdoc.org/d/com.workframe/artemis/0.1.0-SNAPSHOT/api/artemis.document#parse-document
@ferossgp Thanks for the share! Any idea if the client side caching plays well with Fulcro's client side graph database?
is krell compatible with either of the startup-time reduction approaches - ram bundles or hermes ?
I'm trying to follow some instructions for adding animation to a layout, but I don't know how to create the cljs equivalent to onLayout={this._setMaxHeight.bind(this)} as seen here: https://i.imgur.com/seGQjqB.png
just a regular fn, don't need the bind
:onLayout (fn [e] ...)
oh ok, well that gives me Cannot infer target type in expression (. (. event -nativeEvent) -layout)
its just a warning, but still... seems like something isnt quite right
then add (fn [^js event] ...)
see https://shadow-cljs.github.io/docs/UsersGuide.html#infer-externs
awesome, that did it. thanks!