{"id":13493480,"url":"https://github.com/marmelab/json-graphql-server","last_synced_at":"2025-05-13T17:04:32.554Z","repository":{"id":37336577,"uuid":"90272882","full_name":"marmelab/json-graphql-server","owner":"marmelab","description":"Get a full fake GraphQL API with zero coding in less than 30 seconds.","archived":false,"fork":false,"pushed_at":"2025-04-14T08:00:44.000Z","size":2313,"stargazers_count":1943,"open_issues_count":12,"forks_count":171,"subscribers_count":29,"default_branch":"master","last_synced_at":"2025-04-18T04:12:11.263Z","etag":null,"topics":["express-graphql","graphql","graphql-server"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/marmelab.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":".github/CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":".github/CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-05-04T14:28:02.000Z","updated_at":"2025-04-14T19:45:25.000Z","dependencies_parsed_at":"2024-11-15T13:51:43.319Z","dependency_job_id":"89d66ca7-d2f2-4f8b-9a6f-ac23b7dcb56e","html_url":"https://github.com/marmelab/json-graphql-server","commit_stats":{"total_commits":244,"total_committers":27,"mean_commits":9.037037037037036,"dds":0.5942622950819672,"last_synced_commit":"8aa87e13ec2e35034329085c9d6dc8a3d87431f4"},"previous_names":[],"tags_count":28,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marmelab%2Fjson-graphql-server","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marmelab%2Fjson-graphql-server/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marmelab%2Fjson-graphql-server/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marmelab%2Fjson-graphql-server/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/marmelab","download_url":"https://codeload.github.com/marmelab/json-graphql-server/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":249515435,"owners_count":21284585,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["express-graphql","graphql","graphql-server"],"created_at":"2024-07-31T19:01:15.687Z","updated_at":"2025-04-23T23:18:12.792Z","avatar_url":"https://github.com/marmelab.png","language":"JavaScript","funding_links":[],"categories":["JavaScript","Tools"],"sub_categories":["Julia Libraries","Tools - Miscellaneous","Crystal Libraries"],"readme":"# json-graphql-server\n![github top language](https://img.shields.io/github/languages/top/marmelab/json-graphql-server.svg) ![npm](https://img.shields.io/npm/v/json-graphql-server.svg) ![github contributors](https://img.shields.io/github/contributors/marmelab/json-graphql-server.svg) ![license](https://img.shields.io/github/license/marmelab/json-graphql-server.svg) ![prs welcome](https://img.shields.io/badge/prs-welcome-brightgreen.svg)\n\nGet a full fake GraphQL API with zero coding in less than 30 seconds.\n\n## Motivation\n\n\u003e I'd love to learn GraphQL, but it seems that I first have to read a book about GraphQL Types and Queries, then install a gazillion npm packages.\n\u003e - About every developer\n\nStart playing with GraphQL right away with `json-graphql-server`, a testing and mocking tool for GraphQL written in Node.js. All it takes is a JSON of your data.\n\nInspired by the excellent [json-server](https://github.com/typicode/json-server).\n\n## Usage\n\n[![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/fork/json-graphql-server)\n\nCreate a `db.js` file that exports an object where the keys are the entity types. The values should be lists of entities, i.e. arrays of value objects with at least an `id` key. For instance:\n\n```js\nmodule.exports = {\n    posts: [\n        { id: 1, title: \"Lorem Ipsum\", views: 254, user_id: 123 },\n        { id: 2, title: \"Sic Dolor amet\", views: 65, user_id: 456 },\n    ],\n    users: [\n        { id: 123, name: \"John Doe\" },\n        { id: 456, name: \"Jane Doe\" }\n    ],\n    comments: [\n        { id: 987, post_id: 1, body: \"Consectetur adipiscing elit\", date: new Date('2017-07-03') },\n        { id: 995, post_id: 1, body: \"Nam molestie pellentesque dui\", date: new Date('2017-08-17') }\n    ]\n}\n```\n\nUse the `npx json-graphql-server \u003cdb_file_name\u003e` command to start the GraphQL server on localhost, port 3000.\n\n```sh\nnpx json-graphql-server db.js\n```\n\nTo use a different port, use the `--port` or `-p` option:\n\n```\nnpx json-graphql-server db.js --p 8080\n```\n\nTo use a different host, use the `--host` or `-h` option: \n\n```\nnpx json-graphql-server db.js -h 127.0.0.1\n```\n\nNow you can query your data in graphql. For instance, to issue the following query:\n\n```graphql\n{\n    Post(id: 1) {\n        id\n        title\n        views\n        User {\n            name\n        }\n        Comments {\n            date\n            body\n        }\n    }\n}\n```\n\nGo to http://localhost:3000/?query=%7B%20Post%28id%3A%201%29%20%7B%20id%20title%20views%20User%20%7B%20name%20%7D%20Comments%20%7B%20date%20body%20%7D%20%7D%20%7D. You'll get the following result:\n\n```json\n{\n    \"data\": {\n        \"Post\": {\n            \"id\": \"1\",\n            \"title\": \"Lorem Ipsum\",\n            \"views\": 254,\n            \"User\": {\n                \"name\": \"John Doe\"\n            },\n            \"Comments\": [\n                { \"date\": \"2017-07-03T00:00:00.000Z\", \"body\": \"Consectetur adipiscing elit\" },\n                { \"date\": \"2017-08-17T00:00:00.000Z\", \"body\": \"Nam molestie pellentesque dui\" },\n            ]\n        }\n    }\n}\n```\n\nThe json-graphql-server accepts queries in GET and POST. Under the hood, it uses [the `graphql-http` module](https://graphql.org/graphql-js/graphql-http/). Please refer to their documentations for details about passing variables, etc.\n\nNote that the server is [GraphiQL](https://github.com/graphql/graphiql) enabled, so you can query your server using a full-featured graphical user interface, providing autosuggest, history, etc. Just browse http://localhost:3000/ to access it.\n\n![GraphiQL client using json-graphql-server](http://static.marmelab.com/graphiql-json.png)\n\n## Install\n\n```sh\nnpm install -D json-graphql-server\n```\n\n## Generated Types and Queries\n\nBased on your data, json-graphql-server will generate a schema with one type per entity, as well as 3 query types and 3 mutation types. For instance for the `Post` entity:\n\n```graphql\ntype Query {\n  Post(id: ID!): Post\n  allPosts(page: Int, perPage: Int, sortField: String, sortOrder: String, filter: PostFilter): [Post]\n  _allPostsMeta(page: Int, perPage: Int, sortField: String, sortOrder: String, filter: PostFilter): ListMetadata\n}\ntype Mutation {\n  createPost(data: String): Post\n  createManyPost(data: [{data:String}]): [Post]\n  updatePost(data: String): Post\n  deletePost(id: ID!): Post\n}\ntype Post {\n    id: ID!\n    title: String!\n    views: Int!\n    user_id: ID!\n    User: User\n    Comments: [Comment]\n}\ntype PostFilter {\n    q: String\n    id: ID\n    id_neq: ID\n    title: String\n    title_neq: String\n    views: Int\n    views_lt: Int\n    views_lte: Int\n    views_gt: Int\n    views_gte: Int\n    views_neq: Int\n    user_id: ID    \n    user_id_neq: ID\n}\ntype ListMetadata {\n    count: Int!\n}\nscalar Date\n```\n\nBy convention, json-graphql-server expects all entities to have an `id` field that is unique for their type - it's the entity primary key. The type of every field is inferred from the values, so for instance, `Post.title` is a `String!`, and `Post.views` is an `Int!`. When all entities have a value for a field, json-graphql-server makes the field type non nullable (that's why `Post.views` type is `Int!` and not `Int`).\n\nFor every field named `*_id`, json-graphql-server creates a two-way relationship, to let you fetch related entities from both sides. For instance, the presence of the `user_id` field in the `posts` entity leads to the ability to fetch the related `User` for a `Post` - and the related `Posts` for a `User`.\n\nThe `all*` queries accept parameters to let you sort, paginate, and filter the list of results. You can filter by any field, not just the primary key. For instance, you can get the posts written by user `123`. Json-graphql-server also adds a full-text query field named `q`, and created range filter fields for numeric and date fields. All types (excluding booleans and arrays) get a not equal filter. The detail of all available filters can be seen in the generated `*Filter` type.\n\n### Supported types\n\n| Type    | GraphQL Type        | Rule                                                          | Example value |\n|---------|---------------------|---------------------------------------------------------------|---------------|\n| Id      | `GraphQLID`         | `name === 'id' \\|\\| name.substr(name.length - 3) === '_id'`   | `1`           |\n| Integer | `GraphQLInt`        | `Number.isInteger(value)`                                     | `12`          |\n| Numeric | `GraphQLFloat`      | `!isNaN(parseFloat(value)) \u0026\u0026 isFinite(value)`                | `12.34`       |\n| Boolean | `GraphQLBoolean`    | `typeof value === 'boolean'`                                  | `false`       |\n| String  | `GraphQLString`     | `typeof value === 'string'`                                   | `'foo'`       |\n| Array   | `GraphQLList`       | `Array.isArray(value)`                                        | `['bar']`, `[12, 34]` |\n| Date    | `DateType` (custom) | `value instanceof Date \\|\\| isISODateString(value)`           | `new Date('2016-06-10T15:49:14.236Z')`, `'2016-06-10T15:49:14.236Z'` |\n| Object  | `GraphQLJSON`       | `Object.prototype.toString.call(value) === '[object Object]'` | `transport: { service: 'fakemail', auth: { user: 'fake@mail.com', pass: 'f00b@r' } }` |\n\n## GraphQL Usage\n\nHere is how you can use the queries and mutations generated for your data, using `Post` as an example:\n\n\u003ctable\u003e\n    \u003ctr\u003e\n        \u003cth\u003eQuery / Mutation\u003c/th\u003e\n        \u003cth\u003eResult\u003c/th\u003e\n    \u003c/tr\u003e\n    \u003ctr\u003e\n        \u003ctd\u003e\n            \u003cpre\u003e\n// get a single entity, by id\n{\n  Post(id: 1) {\n    id\n    title\n    views\n    user_id\n  }\n}\n            \u003c/pre\u003e\n        \u003c/td\u003e\n        \u003ctd\u003e\n            \u003cpre\u003e\n{\n  \"data\": {\n    \"Post\": {\n        \"id\": 1,\n        \"title\": \"Lorem Ipsum\",\n        \"views\": 254,\n        \"user_id\": 123\n    } \n  }\n}\n            \u003c/pre\u003e\n        \u003c/td\u003e\n    \u003c/tr\u003e\n    \u003ctr\u003e\n        \u003ctd\u003e\n            \u003cpre\u003e\n// include many-to-one relationships\n{\n  Post(id: 1) {\n    title\n    User {\n        name\n    }\n  }\n}\n            \u003c/pre\u003e\n        \u003c/td\u003e\n        \u003ctd\u003e\n            \u003cpre\u003e\n{\n  \"data\": {\n    \"Post\": {\n        \"title\": \"Lorem Ipsum\",\n        \"User\": {\n            \"name\": \"John Doe\"\n        }\n    } \n  }\n}\n            \u003c/pre\u003e\n        \u003c/td\u003e\n    \u003c/tr\u003e\n    \u003ctr\u003e\n        \u003ctd\u003e\n            \u003cpre\u003e\n// include one-to-many relationships\n{\n  Post(id: 1) {\n    title\n    Comments {\n        body\n    }\n  }\n}\n            \u003c/pre\u003e\n        \u003c/td\u003e\n        \u003ctd\u003e\n            \u003cpre\u003e\n{\n  \"data\": {\n    \"Post\": {\n        \"title\": \"Lorem Ipsum\",\n        \"Comments\": [\n            { \"body\": \"Consectetur adipiscing elit\" },\n            { \"body\": \"Nam molestie pellentesque dui\" },\n        ]\n    } \n  }\n}\n            \u003c/pre\u003e\n        \u003c/td\u003e\n    \u003c/tr\u003e\n    \u003ctr\u003e\n        \u003ctd\u003e\n            \u003cpre\u003e\n// get a list of entities for a type\n{\n  allPosts {\n    title\n    views\n  }\n}\n            \u003c/pre\u003e\n        \u003c/td\u003e\n        \u003ctd\u003e\n            \u003cpre\u003e\n{\n  \"data\": {\n    \"allPosts\": [\n      { \"title\": \"Lorem Ipsum\", views: 254 },\n      { \"title\": \"Sic Dolor amet\", views: 65 }\n    ]\n  }\n}\n            \u003c/pre\u003e\n        \u003c/td\u003e\n    \u003c/tr\u003e\n    \u003ctr\u003e\n        \u003ctd\u003e\n            \u003cpre\u003e\n// paginate the results\n{\n  allPosts(page: 0, perPage: 1) {\n    title\n    views\n  }\n}\n            \u003c/pre\u003e\n        \u003c/td\u003e\n        \u003ctd\u003e\n            \u003cpre\u003e\n{\n  \"data\": {\n    \"allPosts\": [\n      { \"title\": \"Lorem Ipsum\", views: 254 },\n    ]\n  }\n}\n            \u003c/pre\u003e\n        \u003c/td\u003e\n    \u003c/tr\u003e\n    \u003ctr\u003e\n        \u003ctd\u003e\n            \u003cpre\u003e\n// sort the results by field\n{\n  allPosts(sortField: \"title\", sortOrder: \"desc\") {\n    title\n    views\n  }\n}\n            \u003c/pre\u003e\n        \u003c/td\u003e\n        \u003ctd\u003e\n            \u003cpre\u003e\n{\n  \"data\": {\n    \"allPosts\": [\n      { \"title\": \"Sic Dolor amet\", views: 65 }\n      { \"title\": \"Lorem Ipsum\", views: 254 },\n    ]\n  }\n}\n            \u003c/pre\u003e\n        \u003c/td\u003e\n    \u003c/tr\u003e\n    \u003ctr\u003e\n        \u003ctd\u003e\n            \u003cpre\u003e\n// filter the results using the full-text filter\n{\n  allPosts(filter: { q: \"lorem\" }) {\n    title\n    views\n  }\n}\n            \u003c/pre\u003e\n        \u003c/td\u003e\n        \u003ctd\u003e\n            \u003cpre\u003e\n{\n  \"data\": {\n    \"allPosts\": [\n      { \"title\": \"Lorem Ipsum\", views: 254 },\n    ]\n  }\n}\n            \u003c/pre\u003e\n        \u003c/td\u003e\n    \u003c/tr\u003e\n    \u003ctr\u003e\n        \u003ctd\u003e\n            \u003cpre\u003e\n// filter the result using any of the entity fields\n{\n  allPosts(filter: { views: 254 }) {\n    title\n    views\n  }\n}\n            \u003c/pre\u003e\n        \u003c/td\u003e\n        \u003ctd\u003e\n            \u003cpre\u003e\n{\n  \"data\": {\n    \"allPosts\": [\n      { \"title\": \"Lorem Ipsum\", views: 254 },\n    ]\n  }\n}\n            \u003c/pre\u003e\n        \u003c/td\u003e\n    \u003c/tr\u003e\n    \u003ctr\u003e\n        \u003ctd\u003e\n            \u003cpre\u003e\n// all fields (except boolean and array) get not equal filters\n// -lt, _lte, -gt, and _gte\n{\n  allPosts(filter: { title_neq: \"Lorem Ipsum\" }) {\n    title\n    views\n  }\n}\n            \u003c/pre\u003e\n        \u003c/td\u003e\n        \u003ctd\u003e\n            \u003cpre\u003e\n{\n  \"data\": {\n    \"allPosts\": [\n      { \"title\": \"Some Other Title\", views: 254 },\n    ]\n  }\n}\n            \u003c/pre\u003e\n        \u003c/td\u003e\n    \u003c/tr\u003e\n    \u003ctr\u003e\n        \u003ctd\u003e\n            \u003cpre\u003e\n// number fields get range filters\n// -lt, _lte, -gt, and _gte\n{\n  allPosts(filter: { views_gte: 200 }) {\n    title\n    views\n  }\n}\n            \u003c/pre\u003e\n        \u003c/td\u003e\n        \u003ctd\u003e\n            \u003cpre\u003e\n{\n  \"data\": {\n    \"allPosts\": [\n      { \"title\": \"Lorem Ipsum\", views: 254 },\n    ]\n  }\n}\n            \u003c/pre\u003e\n        \u003c/td\u003e\n    \u003c/tr\u003e\n\u003c/table\u003e\n\n## Usage with Node\n\nInstall the module locally:\n\n```sh\nnpm install --save-dev json-graphql-server\n```\n\nThen use the `jsonGraphqlExpress` express middleware:\n\n```js\nimport express from 'express';\nimport jsonGraphqlExpress from 'json-graphql-server/node';\n\nconst PORT = 3000;\nconst app = express();\nconst data = {\n    // ... your data\n};\n\napp.use('/graphql', jsonGraphqlExpress(data));\napp.listen(PORT);\n```\n\n## Usage in browser with XMLHttpRequest\n\nUseful when using XMLHttpRequest directly or libraries such as [axios](https://www.npmjs.com/package/axios).\n\n### Install with a script tag\n\nAdd a `script` tag referencing the library:\n\n```html\n\u003cscript src=\"../dist/json-graphql-server.umd.js\"\u003e\u003c/script\u003e\n```\n\nIt will expose the `JsonGraphqlServer` as a global object:\n\n```html\n\u003cscript type=\"text/javascript\"\u003e\n    window.addEventListener('load', function() {\n        const data = [...];\n\n        const server = JsonGraphqlServer({\n            data,\n            url: 'http://localhost:3000/graphql'\n        });\n\n        server.start();\n\n        const xhr = new XMLHttpRequest();\n        xhr.open('POST', 'http://localhost:3000/graphql', true);\n        xhr.setRequestHeader('Content-Type', 'application/json');\n        xhr.setRequestHeader('Accept', 'application/json');\n        xhr.onerror = function(error) {\n            console.error(error);\n        }\n        xhr.onload = function() {\n            const result = JSON.parse(xhr.responseText);\n            console.log('data returned:', result);\n            alert('Found ' + result.data.allPosts.length + ' posts');\n        }\n        const body = JSON.stringify({ query: 'query allPosts { allPosts { id } }' });\n        xhr.send(body);\n    });\n\u003c/script\u003e\n```\n\n### Use with a bundler (webpack)\n\n```sh\nnpm install json-graphql-server\n```\n\n```js\nimport JsonGraphqlServer from 'json-graphql-server';\n\nconst data = [...];\n\nconst server = JsonGraphqlServer({\n    data,\n    url: 'http://localhost:3000/graphql'\n});\n\nserver.start();\n\nconst xhr = new XMLHttpRequest();\nxhr.open('POST', 'http://localhost:3000/graphql', true);\nxhr.setRequestHeader('Content-Type', 'application/json');\nxhr.setRequestHeader('Accept', 'application/json');\nxhr.onerror = function(error) {\n    console.error(error);\n}\nxhr.onload = function() {\n    const result = JSON.parse(xhr.responseText);\n    console.log('data returned:', result);\n    alert('Found ' + result.data.allPosts.length + ' posts');\n}\nconst body = JSON.stringify({ query: 'query allPosts { allPosts { id } }' });\nxhr.send(body);\n```\n\n## Usage in browser with fetch\n\n```js\nimport fetchMock from 'fetch-mock';\nimport JsonGraphqlServer from 'json-graphql-server';\n\nconst data = [...];\nconst server = JsonGraphqlServer({ data });\n\nfetchMock.post('http://localhost:3000/graphql', server.getHandler());\n\nfetch({\n    url: 'http://localhost:3000/graphql',\n    method: 'POST',\n    body: JSON.stringify({ query: 'query allPosts { allPosts { id } }' })\n})\n.then(response =\u003e response.json())\n.then(json =\u003e {\n    alert('Found ' + result.data.allPosts.length + ' posts');\n})\n```\n\n## Adding Authentication, Custom Routes, etc.\n\n`json-graphql-server` doesn't deal with authentication or custom routes. But you can use your favorite middleware with Express:\n\n```js\nimport express from 'express';\nimport jsonGraphqlExpress from 'json-graphql-server';\n\nimport OAuthSecurityMiddleWare from './path/to/OAuthSecurityMiddleWare';\n\nconst PORT = 3000;\nconst app = express();\nconst data = {\n    // ... your data\n};\napp.use(OAuthSecurityMiddleWare());\napp.use('/graphql', jsonGraphqlExpress(data));\napp.listen(PORT);\n```\n\n## Schema Export\n\nYou can also use the export `jsonSchemaBuilder` to get your own copy of the GraphQLSchema:\n\nIn  node:\n```js\nimport {graphql} from 'graphql';\nimport {jsonSchemaBuilder} from 'json-graphql-server';\n\nconst data = { };\nconst schema = jsonSchemaBuilder(data);\nconst query = `[...]`\n\ngraphql(schema, query).then(result =\u003e {\n  console.log(result);\n});\n```\n\nOr available in the global scope when running on a client as `jsonSchemaBuilder`.\n\n## Plain Schema\n\nIf you want to use another server type instead of the built in graphql express,\nlike apollo-server or etc, you can expose the plain schema to be built into\nan executable schema (there may be version issues otherwise).\n\nThis uses the export `getPlainSchema`.\n\n```js\nimport { ApolloServer } from 'apollo-server';\nimport { makeExecutableSchema } from '@graphql-tools/schema'; // or graphql-tools\nimport { applyMiddleware } from 'graphql-middleware';\nimport { getPlainSchema } from 'json-graphql-server';\n\nconst data = { };\n\n// Example middlewares\nconst logInput = async (resolve, root, args, context, info) =\u003e {\n    console.log(`1. logInput: ${JSON.stringify(args)}`);\n    const result = await resolve(root, args, context, info);\n    console.log(`5. logInput`);\n    return result;\n};\nconst logResult = async (resolve, root, args, context, info) =\u003e {\n    console.log(`2. logResult`);\n    const result = await resolve(root, args, context, info);\n    console.log(`4. logResult: ${JSON.stringify(result)}`);\n    return result;\n};\n\n// Leverage getPlainSchema\nconst schema = applyMiddleware(\n    makeExecutableSchema(getPlainSchema(data)),\n    logInput,\n    logResult\n);\nconst server = new ApolloServer({\n    schema,\n});\nserver.listen({ port: 3000 });\n\n```\n\n## Deployment\n\nDeploy with Heroku or Next.js.\n\n## Roadmap\n\n* CLI options (https, watch, delay, custom schema)\n* Subscriptions\n* Client-side mocking (à la [FakeRest](https://github.com/marmelab/FakeRest))\n\n## Contributing\n\nUse Prettier formatting and make sure you include unit tests. The project includes a `Makefile` to automate usual developer tasks:\n\n```sh\nmake install\nmake build\nmake test\nmake watch\nmake format\n```\n\nTo learn more about the contributions to this project, consult the [contribution guide](/.github/CONTRIBUTING.md).\n\n## Maintainers\n\n[![fzaninotto](https://avatars2.githubusercontent.com/u/99944?s=96\u0026amp;v=4)](https://github.com/fzaninotto) | [![djhi](https://avatars1.githubusercontent.com/u/1122076?s=96\u0026amp;v=4)](https://github.com/djhi) | [![alexisjanvier](https://avatars1.githubusercontent.com/u/547706?s=96\u0026amp;v=4)](https://github.com/alexisjanvier)\n:---:|:---:|:---:\n[Francois Zaninotto](https://github.com/fzaninotto) | [Gildas Garcia](https://github.com/djhi) | [Alexis Janvier](https://github.com/alexisjanvier)\n\n## License\n\njson-graphql-server is licensed under the [MIT Licence](https://github.com/marmelab/json-graphql-server/blob/master/LICENSE.md), sponsored and supported by [marmelab](http://marmelab.com).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmarmelab%2Fjson-graphql-server","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmarmelab%2Fjson-graphql-server","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmarmelab%2Fjson-graphql-server/lists"}