nireno
nireno
In Hasura, a nullable field `order` can be set to null with this mutation: ``` mutation ($id: String!) { update_table_by_pk(pk_columns: {id: $id}, _set: {order: null}) { id } } ```...
This rescript component: ``` @react.component let make = ( ~foo__one, ~foo__two, ) => { {foo__one->React.string} {foo__two->React.string} } ``` Generates this javascript function: ``` function Playground(Props) { var foo__one = Props.foo;...
Having [email protected] means `npm install @reasonml-community/graphql-ppx` will throw this error: ``` npm ERR! code ERESOLVE npm ERR! ERESOLVE unable to resolve dependency tree npm ERR! npm ERR! While resolving: [email protected]...
I've seen these types being used in the wild but they're either unsearchable or don't exist in the docs. I assume {..} is related to the object type but not...
I'm comparing the behavior I'm experiencing with ReForm to [this example from react-ux-form](https://swan-io.github.io/react-ux-form/). In the react-ux-form example notice that first name is required but simply clicking into the field and...
In the calc function #substract should be #subtract. Or since we have #add, #mul, #div, maybe it should be #sub?