Skip to content

Commit b98dad9

Browse files
committed
Fix github links
1 parent dd01a18 commit b98dad9

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

data/code.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@
9696
{
9797
"name": "graphqld",
9898
"description": "A GraphQL implementaiton for the D Programming Language.",
99-
"github": "https://github.com/burner/graphqld",
99+
"github": "burner/graphqld",
100100
"url": "https://github.com/burner/graphqld"
101101
}
102102
]
@@ -106,13 +106,13 @@
106106
{
107107
"name": "Neuron",
108108
"description": "A GraphQL client for Elixir",
109-
"github": "https://github.com/uesteibar/neuron",
109+
"github": "uesteibar/neuron",
110110
"url": "https://github.com/uesteibar/neuron"
111111
},
112112
{
113113
"name": "common_graphql_client",
114114
"description": "Elixir GraphQL Client with HTTP and WebSocket support",
115-
"github": "https://github.com/annkissam/common_graphql_client",
115+
"github": "annkissam/common_graphql_client",
116116
"url": "https://github.com/annkissam/common_graphql_client"
117117
}
118118
],
@@ -238,15 +238,15 @@
238238
"description": "A Haskell library for building GraphQL APIs.",
239239
"howto": "\nHello world example with `morpheus-graphql`:\n\n```graphql\n# schema.gql\n\"\"\"\nA supernatural being considered divine and sacred\n\"\"\"\ntype Deity {\n name: String!\n power: String @deprecated(reason: \"no more supported\")\n}\ntype Query {\n deity(name: String! = \"Morpheus\"): Deity!\n}\n```\n\n\n```haskell\n{-# LANGUAGE DeriveGeneric #-}\n{-# LANGUAGE DuplicateRecordFields #-}\n{-# LANGUAGE FlexibleContexts #-}\n{-# LANGUAGE FlexibleInstances #-}\n{-# LANGUAGE MultiParamTypeClasses #-}\n{-# LANGUAGE NamedFieldPuns #-}\n{-# LANGUAGE OverloadedStrings #-}\n{-# LANGUAGE ScopedTypeVariables #-}\n{-# LANGUAGE TemplateHaskell #-}\n{-# LANGUAGE TypeFamilies #-}\nmodule API (api) where\nimport Data.ByteString.Lazy.Char8 (ByteString)\nimport Data.Morpheus (interpreter)\nimport Data.Morpheus.Document (importGQLDocument)\nimport Data.Morpheus.Types (RootResolver (..), Undefined (..))\nimport Data.Text (Text)\nimportGQLDocument \"schema.gql\"\nrootResolver :: RootResolver IO () Query Undefined Undefined\nrootResolver =\n RootResolver\n { queryResolver = Query {deity},\n mutationResolver = Undefined,\n subscriptionResolver = Undefined\n }\n where\n deity DeityArgs {name} =\n pure\n Deity\n { name = pure name,\n power = pure (Just \"Shapeshifting\")\n }\napi :: ByteString -> IO ByteString\napi = interpreter rootResolver\n```\n\nSee [morpheus-graphql-examples](https://github.com/morpheusgraphql/morpheus-graphql) for more sophisticated APIs.\n",
240240
"url": "https://github.com/morpheusgraphql/morpheus-graphql",
241-
"github": "https://github.com/morpheusgraphql/morpheus-graphql"
241+
"github": "morpheusgraphql/morpheus-graphql"
242242
}
243243
],
244244
"GraphQL Clients": [
245245
{
246246
"name": "morpheus-graphql-client",
247247
"description": "A strongly-typed GraphQL client implementation in Haksell.",
248248
"url": "https://github.com/morpheusgraphql/morpheus-graphql",
249-
"github": "https://github.com/morpheusgraphql/morpheus-graphql"
249+
"github": "morpheusgraphql/morpheus-graphql"
250250
}
251251
]
252252
},
@@ -554,13 +554,13 @@
554554
{
555555
"name": "GraphQL API for WordPress",
556556
"description": "A GraphQL server for WordPress",
557-
"github": "https://github.com/GraphQLAPI/graphql-api-for-wp",
557+
"github": "GraphQLAPI/graphql-api-for-wp",
558558
"url": "https://github.com/GraphQLAPI/graphql-api-for-wp"
559559
},
560560
{
561561
"name": "GraPHPinator",
562562
"description": "A GraphQL implementation for modern PHP",
563-
"github": "https://github.com/infinityloop-dev/graphpinator",
563+
"github": "infinityloop-dev/graphpinator",
564564
"url": "https://github.com/infinityloop-dev/graphpinator"
565565
}
566566
]

0 commit comments

Comments
 (0)