Brandon Chinn

Results 69 issues of Brandon Chinn

Lots of `NOTICE` output from integration testing in CI. Find out if we can alleviate that, or output it to a log file.

`--quickcheck-replay=920282` There seems to be a bug in providing `10000-08-14` as a date (renders as `:000-08-14`) even though the persistent layer is sending `PersistDay 10000-08-14` correctly

Get the logs of queries that are run in integration testing and upload it in CI as test artifacts for potential auditing

~~RenameColumn~~ AlterColumnType AlterColumnNull AlterColumnDefault (After #45)

99% of the time, I see developers trying to use `fail` to throw an error in the same way `error` does, but `fail` means "early termination of a monad", not...

Investigate if it would be possible to support ```hs type Person = [schema| { parents: List #Person, } |] ```

```hs mkGetter' "Node" "getNodes" ".nodes[]" ``` should work for any object with a `nodes` key. Could be implemented with a helper that generates the type of the input of ```hs...

The following schemas compile, but would always fail at runtime: ```hs [schema| { a: Int, [b]: { a: Bool } } |] [schema| { a: Int, [b]: { [c]: {...

From the README: ``` :1:6: error: • Key 'isEnabled' does not exist in the following schema: '[ '("id", 'Data.Aeson.Schema.SchemaInt), '("name", 'Data.Aeson.Schema.SchemaText), '("age", 'Data.Aeson.Schema.SchemaMaybe 'Data.Aeson.Schema.SchemaInt), '("enabled", 'Data.Aeson.Schema.SchemaBool), '("groups", 'Data.Aeson.Schema.SchemaMaybe ('Data.Aeson.Schema.SchemaList ('Data.Aeson.Schema.SchemaObject...

enhancement
question

```hs type Foo = [schema| { foo: HashMap Text Int } |] ```