MCPcopy Index your code
hub / github.com/APIs-guru/graphql-faker

github.com/APIs-guru/graphql-faker @v2.0.0

Chat with this repo
repository ↗ · DeepWiki ↗ · release v2.0.0 ↗ · + Follow
78 symbols 174 edges 12 files 2 documented · 3%
What it actually does AI analysis from the code graph — generated when you open this
loading…
README

GraphQL Faker logo

GraphQL Faker

Build Status npm David David npm docker

Mock your future API or extend the existing API with realistic data from faker.js. No coding required. All you need is to write GraphQL SDL. Don't worry, we will provide you with examples in our SDL editor.

In the GIF below we add fields to types inside real GitHub API and you can make queries from GraphiQL, Apollo, Relay, etc. and receive real data mixed with mock data. demo-gif

How does it work?

We use @fake directive to let you specify how to fake data. And if 60+ fakers is not enough for you, just use @examples directive to provide examples. Use @listLength directive to specify number of returned array items. Add a directive to any field or custom scalar definition:

type Person {
  name: String @fake(type: firstName)
  gender: String @examples(values: ["male", "female"])
  pets: [Pet] @listLength(min: 1, max: 10)
}

No need to remember or read any docs. Autocompletion is included!

Features

  • 60+ different types of faked data e.g. streetAddress, firstName, lastName, imageUrl, lorem, semver
  • Comes with multiple locales supported
  • Runs as a local server (can be called from browser, cURL, your app, etc.)
  • Interactive editor with autocompletion for directives with GraphiQL embedded
  • ✨ Support for proxying existing GraphQL API and extending it with faked data Extend mode diagram

Install

npm install -g graphql-faker

or run it in a Docker container, see Usage with Docker

TL;DR

Mock GraphQL API based on example SDL and open interactive editor:

graphql-faker --open

Note: You can specify non-existing SDL file names - Faker will use example SDL which you can edit in interactive editor.

Extend real data from SWAPI with faked data based on extension SDL:

graphql-faker ./ext-swapi.graphql --extend http://swapi.apis.guru

Extend real data from GitHub API with faked data based on extension SDL (you can get token here):

graphql-faker ./ext-gh.graphql --extend https://api.github.com/graphql \
--header "Authorization: bearer <TOKEN>"

Usage

graphql-faker [options] [SDL file]

[SDL file] - path to file with SDL. If this argument is omitted Faker uses default file name.

Options

  • -p, --port HTTP Port [default: env.PORT or 9002]
  • -e, --extend URL to existing GraphQL server to extend
  • -o, --open Open page with SDL editor and GraphiQL in browser
  • -H, --header Specify headers to the proxied server in cURL format, e.g.: Authorization: bearer XXXXXXXXX
  • --forward-headers Specify which headers should be forwarded to the proxied server
  • --co, --cors-origin CORS: Specify the custom origin for the Access-Control-Allow-Origin header, by default it is the same as Origin header from the request
  • -h, --help Show help

When specifying the [SDL file] after the --forward-headers option you need to prefix it with -- to clarify it's not another header. For example:

graphql-faker --extend http://example.com/graphql --forward-headers Authorization -- ./temp.faker.graphql

When you finish with an other option there is no need for the --:

graphql-faker --forward-headers Authorization --extend http://example.com/graphql ./temp.faker.graphql

Usage with Docker

docker run -p=9002:9002 apisguru/graphql-faker [options] [SDL file]

To specify a custom file, mount a volume where the file is located to /workdir:

docker run -v=${PWD}:/workdir apisguru/graphql-faker path/to/schema.sdl

Because the process is running inside of the container, --open does not work.

Development

npm i
npm run build
npm run start

Extension points exported contracts — how you extend this code

FakeArgs (Interface)
(no doc)
src/fake_schema.ts
Options (Interface)
(no doc)
src/cli.ts
FakeEditorState (Interface)
(no doc)
src/editor/index.tsx
ExamplesArgs (Interface)
(no doc)
src/fake_schema.ts
GraphQLEditorProps (Interface)
(no doc)
src/editor/GraphQLEditor/GraphQLEditor.tsx
ListLengthArgs (Interface)
(no doc)
src/fake_schema.ts
DirectiveArgs (Interface)
(no doc)
src/fake_schema.ts

Core symbols most depended-on inside this repo

buildWithFakeDefinitions
called by 6
src/fake_definition.ts
reportError
called by 6
src/cli.ts
getRandomItem
called by 4
src/fake.ts
getRandomInt
called by 3
src/fake.ts
getDirectiveArgs
called by 3
src/fake_schema.ts
fetcher
called by 3
src/editor/index.tsx
updateSDL
called by 3
src/editor/index.tsx
switchTab
called by 3
src/editor/index.tsx

Shape

Function 45
Method 20
Interface 7
Class 6

Languages

TypeScript100%

Modules by API surface

src/editor/index.tsx14 symbols
src/fake_schema.ts13 symbols
src/editor/GraphQLEditor/GraphQLEditor.tsx13 symbols
src/fake_definition.ts8 symbols
src/proxy.ts7 symbols
src/cli.ts7 symbols
src/fake.ts5 symbols
src/utils.ts4 symbols
src/editor/icons.tsx4 symbols
src/index.ts3 symbols

For agents

$ claude mcp add graphql-faker \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact

Ask about this repo answers extend the page