Alex Weber
Alex Weber
@vlasenko did you guys manage to get react-navigation running together with expo?
@vlasenko Yes, after fiddling around with different versions of expo, react-native and react-navigation, I finally got it to work. Only thing left is a warning: `Possible Unhandled Promise Rejection (id:...
`default` is being a reserved word in Typescript. A constant can therefore not be named `export const default: string`, as this is not valid Typescript code.
@ReggaePanda having a look at the implementation I would say that how `@defer` is used in this alpha version also covers `@stream`. So you could basically use `@defer` in lists...
After updating FAKE through [PR 115](https://github.com/fsprojects/FSharp.Data.GraphQL/pull/115), this PR has finally passed the checks.
@adamw yes, unfortunately it is a Java class. Out of curiosity - how would I solve the problem if it would be a Scala class?
@adamw you can define default parameters `class Foo(bar: Bar, name: String = "default name")`. But I guess an answer to this is the same as for the Java case.
Here a quick test: ``` trait FoobarModule { lazy val foo = wire[Foo] lazy val specialName = "special name" lazy val bar = wire[Bar] } class Bar(foo: Foo, val name:...
@thesamet do you think the latest 0.6.0 test release is production-ready or would you advise waiting until all flaky tests are fixed?
@thesamet thanks, yes we do use streaming API, although realistically I am not expecting cases in production where we would run into back-pressure situations. Will let you know if we...