Robin Munn
Robin Munn
https://github.com/fsprojects/FSharp.Data.GraphQL may be of interest here.
Also of interest: https://graphql.org/learn/serving-over-http/ Summary: * Single endpoint, usually `/graphql`, handles all requests * Handle either GET or POST * For GET, use query string. One parameter named `query` required,...
The answer I left on [this Stack Overflow question](https://stackoverflow.com/questions/51275762/adding-a-button-for-google-signin-using-f-fable-asp-net-react/) could be a decent start towards a sample.
PR #273 is an initial implementation. I would welcome feedback on it; see the PR description for the specific items I want to discuss.
I wonder if we should create build targets named FooOnly that run the Foo target with no dependencies. I've done this in my projects with the DotnetTest target, where I...
Encountered this myself matching against some passwords in a database that were generated by legacy PHP code I'm trying to replace. I was able to work around the lack of...
In addition to demos, this could be useful for debugging as well, both at runtime ("Why am I getting the wrong result here?") and at compile time ("Why is the...
Here's some further data to help track this down. I wrote the following code to see if there were any differences between the types created by Thoth.Json and the "standard"...
I've created a minimal reproduction at https://github.com/rmunn/repro-json-parsing-failure — just clone the repo and run `./build.sh -t Run` (or `./build.cmd -t Run` if you're on Windows). Then open a developer console,...
And here's the patch needed to make my repro *succeed* instead of failing: ```diff diff --git a/src/Client/Client.fs b/src/Client/Client.fs index e688b4a..0462bdb 100644 --- a/src/Client/Client.fs +++ b/src/Client/Client.fs @@ -26,10 +26,10 @@ type...