nireno
nireno
It gets a brief mention under fixed arguments: https://rescript-lang.org/docs/manual/latest/bind-to-js-function#fixed-arguments
#46 also describes this issue
I'm hoping this can also apply to single post queries the way that [WPGraphql Next-Previous Post](https://github.com/m-inan/wp-graphql-next-previous-post) allows: ``` query Post { post(id: 1, idType: DATABASE_ID) { title next { title...
`@` seems to mostly work for me in terms of finding variable/function names when I'm editing a file. Doesn't seem to catch variables that were destructured though, like it won't...
If we take the signup form demo, I want to validate the email field on blur. So my naive approach would be: ``` form.getFieldState(Field(Email)) != Pristine ? form.validateField(Field(Email)) : ()}...