Alistair Burrowes

Results 33 comments of Alistair Burrowes

I'll get there eventually, but not a high priority for me right now. If someone else is keen feel free :)

Thanks! This works if I change the query to: ```haskell defineByDocumentFile "../resource/minimal-github.graphql" [gql| query FetchRepoFile ($repoOwner: String!, $repoName: String!, $expression: String!) { repository(name: $repoName, owner: $repoOwner) { object(expression: $expression) {...

Unfortunately this is still producing the same error unless I manually include `__typename`. I have updated master on https://github.com/AlistairB/morpheus-repro to reproduce the issue. As per https://github.com/AlistairB/morpheus-repro/blob/master/src/Lib.hs#L50-L52 , you will need...

Hi, I've been playing with this a little bit more and noticed another minor issue. In the morpheus-repro example, the master version of morpheus will generate the following type: ```haskell...

Hmm interesting. 'file sizes' and 'reinterpretation' do show the expected improvement. Perhaps 'big stack' and 'countdown' are hitting some edge case that is now slower. BTW I cleaned up the...

Thanks, in terms of of the docker haskell images, we need both x64 + aarch64 to be able to release a deb11 version unfortunately. As you just release one image...

Hmm [GHC aarch64 deb11](https://gitlab.haskell.org/ghc/ghc/-/issues/22005) support seems to be now milestoned for 9.6.1 . Oh well, no rush on this ;)

No worries. Love your work :smiley: My goal is simply to capture all the dependency names, ie. `[Text]` ```toml [dependencies] time = "0.1.12" # I parse this to "time". This...

As another example, [poetry has an expanded dependency style](https://python-poetry.org/docs/dependency-specification/#expanded-dependency-specification-syntax). ```toml [tool.poetry.dev-dependencies.black] version = "19.10b0" [tool.poetry.dev-dependencies.other-one] allow-prereleases = true ``` Where the interesting information I care about is `black` and `other-one`...

@shinzui FYI, I am using gogol-pubsub in prod with no issues.