morpheus-graphql icon indicating copy to clipboard operation
morpheus-graphql copied to clipboard

Haskell GraphQL Api, Client and Tools

Results 48 morpheus-graphql issues
Sort by recently updated
recently updated
newest added

This may be a little bit picky, but [the spec says](https://graphql.github.io/graphql-spec/draft/#sec-Int) that Ints are 32-bit integers. Haskell's `Int` type, used here, is [at least a signed 30-bit integer](http://hackage.haskell.org/package/base-4.12.0.0/docs/Data-Int.html#t:Int), probably due...

Proposal
scope/server

Hey, I face an issue when I try to use Set Text for example as an input type argument in a query (or a mutation): ``` | • No instance...

feature
scope/server

I am trying to create a subscription endpoint like this: ``` resolveJoinedLobby :: Maybe User.SessionE -> Pipe -> JoinedLobbyArgs -> ResolveS USEREVENT IO UserJoined resolveJoinedLobby session pipe args = SubResolver...

bug
scope/server

# Specs - [x] Subscription operations must have [exactly one root field.](https://spec.graphql.org/June2018/#sec-Single-root-field) ## Variants ## current ```hs resolveNewUser :: ResolveS EVENT IO User resolveNewUser = subscribe [USER] $ do requireAuthorized...

feature
scope/server

Hi, possibly related to https://github.com/morpheusgraphql/morpheus-graphql/issues/493 I got around to using the changes for this feature. They are compiling as expected, however now I am getting a runtime error. My query...

bug
scope/client

```hs CORE=(stack query locals morpheus-graphql-core version) SERVER=(stack query locals morpheus-graphql version) CLIENT=(stack query locals morpheus-graphql-client version) ``` if ($TAG_VERSION == $SERVER == $CLIENT == $CORE) deploy else reject

enhancement

this issue is dedicated to shape the Morpheus public API, that will be long term API specification for this library. any suggestion is more then welcome

help wanted
Discussion

# rough idea, how it should work we will use [wuss](http://hackage.haskell.org/package/wuss) ## if it will work with custom monad: ```hs newtype ClientStream m a = ClientStream { unClientStream :: (Either...

help wanted
feature
scope/client

I get the following error with `morpheus-graphql-code-gen-utils`: ``` [6 of 7] Compiling Data.Morpheus.CodeGen.TH ( src/Data/Morpheus/CodeGen/TH.hs, dist/build/Data/Morpheus/CodeGen/TH.o, dist/build/Data/Morpheus/CodeGen/TH.dyn_o ) src/Data/Morpheus/CodeGen/TH.hs:290:54: error: [GHC-83865] • Couldn't match type ‘()’ with ‘BndrVis’ Expected: [TyVarBndr...