morpheus-graphql-app: Morpheus GraphQL Core

[ graphql, library, mit, web ] [ Propose Tags ]

Build GraphQL APIs with your favourite functional language!


[Skip to Readme]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.17.0, 0.18.0, 0.19.0, 0.19.1, 0.19.2, 0.19.3, 0.20.0, 0.20.1, 0.21.0, 0.22.0, 0.22.1, 0.23.0, 0.24.0, 0.24.1, 0.24.2, 0.24.3, 0.25.0, 0.26.0, 0.27.0, 0.27.1, 0.27.2, 0.27.3
Change log changelog.md
Dependencies aeson (>=1.4.4.0 && <=1.6), base (>=4.7 && <5), bytestring (>=0.10.4 && <0.11), containers (>=0.4.2.1 && <0.7), hashable (>=1.0.0), megaparsec (>=7.0.0 && <10.0.0), morpheus-graphql-core (>=0.17.0 && <0.18.0), mtl (>=2.0 && <=3.0), relude (>=0.3.0), scientific (>=0.3.6.2 && <0.4), template-haskell (>=2.0 && <=3.0), text (>=1.2.3.0 && <1.3), th-lift-instances (>=0.1.1 && <=0.3), transformers (>=0.3.0.0 && <0.6), unordered-containers (>=0.2.8.0 && <0.3), vector (>=0.12.0.1 && <0.13) [details]
License MIT
Copyright (c) 2019 Daviti Nalchevanidze
Author Daviti Nalchevanidze
Maintainer d.nalchevanidze@gmail.com
Category web, graphql
Home page https://morpheusgraphql.com
Bug tracker https://github.com/nalchevanidze/morpheus-graphql-app/issues
Source repo head: git clone https://github.com/nalchevanidze/morpheus-graphql-app
Uploaded by nalchevanidze at 2021-02-25T13:45:16Z
Distributions LTSHaskell:0.27.3, NixOS:0.27.3
Reverse Dependencies 3 direct, 2 indirect [details]
Downloads 2554 total (77 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs available [build log]
Last success reported on 2021-02-25 [all 1 reports]

Readme for morpheus-graphql-app-0.17.0

[back to package description]

Morpheus GraphQL App

provides utilities for creating executable GraphQL applications for servers. You can use it to create a schema-first GraphQL server with dynamic typings.

Build schema-first GraphQL App with dynamic typings

schema :: Schema VALID
schema =
  [dsl|
  type Query {
    deity(name: String): Deity!
  }

  type Deity {
    name: String!
    power: [String!]!
  }
|]

resolver :: Monad m => RootResolverValue e m
resolver =
  RootResModel
    { query =
        pure $
          mkObject
            "Query"
            [("deity", resolveDeity)],
      mutation = pure mkNull,
      subscription = pure mkNull
    }

resolveDeity :: Monad m => m (ResolverValue  m)
resolveDeity =
  pure $
    mkObject
      "Deity"
      [ ("name", pure $ mkString "Morpheus"),
        ("power", pure $ mkList [mkString "Shapeshifting"])
      ]

api :: ByteString -> IO  ByteString
api = runApp (mkApp schema resolver)