njlr

Results 150 issues of njlr

It seems that the JSON functionality is implemented as member functions (e.g. `json.GetProperty("foo")`). However, I would like to have a module of functions that I can use in a more...

A little-used (but very useful!) feature in `Npgsql` is the `NpgsqlBinaryImporter` class, which allows more efficient bulk data loading with the Postgres `COPY` command. Here is a demo using `Npgsql.FSharp`:...

I propose we allow constraints to be named for easier reuse. For example, consider this code: ```fsharp // Invalid type Point 't) and 't : (static member ( + )...

area: srtp-and-constraints

When writing resolver functions, my most common run-time errors are caused by unpacking the arguments incorrectly. This is because the API presents a `Map`, so it's easy to get the...

### Description The library does not generate a valid introspection schema for arguments with default values. They do not appear to be escaped properly. ### Repro steps Here is an...

This PR introduces "decoders" to input types in the schema. A decoder is like a `coerceInput` function, but it returns a structured `Error` rather than an `option`: ```fsharp type DecodeResult...

This is a question rather than an issue (although it could be turned into an issue if no good solution is found!) Suppose I have a library of books: ```gql...

```javascript= > var parse = require('bash-parser') undefined > parse('echo };') Error: Parse error on line 1: Unexpected 'Rbrace' ``` However, this seems to be valid: ```bash= $ echo }; }...

Fixes TS error on "install"

It would be nice to wrap F# scripts (`.fsx` files) in a Bazel target so that they can be run with Bazel, included as tools in `sh_binary` targets, etc. Perhaps...