Skip to content

Commit

Permalink
Change urls after migration to graphql-kit
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanGoncharov committed May 11, 2023
1 parent 2775f15 commit 340aed3
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 15 deletions.
9 changes: 4 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
![GraphQL Faker logo](./docs/faker-logo-text.png)

# GraphQL Faker

[![Build Status](https://github.com/APIs-guru/graphql-faker/workflows/CI/badge.svg?branch=master)](https://github.com/APIs-guru/graphql-faker/actions?query=branch%3Amaster)
graphql-kit[![Build Status](https://github.com/graphql-kit/graphql-faker/workflows/CI/badge.svg?branch=master)](https://github.com/graphql-kit/graphql-faker/actions?query=branch%3Amaster)
[![npm](https://img.shields.io/npm/v/graphql-faker.svg)](https://www.npmjs.com/package/graphql-faker)
[![David](https://img.shields.io/david/APIs-guru/graphql-faker.svg)](https://david-dm.org/APIs-guru/graphql-faker)
[![David](https://img.shields.io/david/dev/APIs-guru/graphql-faker.svg)](https://david-dm.org/APIs-guru/graphql-faker?type=dev)
[![npm](https://img.shields.io/npm/l/graphql-faker.svg)](https://github.com/APIs-guru/graphql-faker/blob/master/LICENSE)
[![David](https://img.shields.io/david/graphql-kit/graphql-faker.svg)](https://david-dm.org/graphql-kit/graphql-faker)
[![David](https://img.shields.io/david/dev/graphql-kit/graphql-faker.svg)](https://david-dm.org/graphql-kit/graphql-faker?type=dev)
[![npm](https://img.shields.io/npm/l/graphql-faker.svg)](https://github.com/graphql-kit/graphql-faker/blob/master/LICENSE)
[![docker](https://img.shields.io/docker/build/apisguru/graphql-faker.svg)](https://hub.docker.com/r/apisguru/graphql-faker/)

Mock your future API or extend the existing API with realistic data from [faker.js](https://github.com/Marak/faker.js). **No coding required**.
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,14 @@
},
"repository": {
"type": "git",
"url": "git+https://github.com/APIs-guru/graphql-faker.git"
"url": "git+https://github.com/graphql-kit/graphql-faker.git"
},
"author": "APIs.guru <[email protected]>",
"author": "IvanGoncharov <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/APIs-guru/graphql-faker/issues"
"url": "https://github.com/graphql-kit/graphql-faker/issues"
},
"homepage": "https://github.com/APIs-guru/graphql-faker#readme",
"homepage": "https://github.com/graphql-kit/graphql-faker#readme",
"devDependencies": {
"@types/body-parser": "1.19.0",
"@types/cors": "2.8.10",
Expand Down
2 changes: 1 addition & 1 deletion src/default-extend.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
# Press save or Cmd+Enter to apply the changes and update server. Switch to GraphiQL
# on the left panel to immediately test your changes.
#
# Developed with ❤️ by APIs.guru | https://github.com/APIs-guru/graphql-faker
# Made in Ukraine 🇺🇦 | https://github.com/graphql-kit/graphql-faker

extend type ___RootTypeName___ {
pet: Pet
Expand Down
2 changes: 1 addition & 1 deletion src/default-schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
# on the left panel to immediately test your changes.
# This tool also supports extending existing APIs. Check graphql-faker --help
#
# Developed with ❤️ by APIs.guru | https://github.com/APIs-guru/graphql-faker
# Made in Ukraine 🇺🇦 | https://github.com/graphql-kit/graphql-faker

type Company {
id: ID
Expand Down
2 changes: 1 addition & 1 deletion src/editor/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
}
</style>
<link rel="stylesheet" href="main.css" />
<title>GraphQL Faker by APIs.guru</title>
<title>GraphQL Faker</title>
</head>
<body>
<div id="container" clsss="app-container"></div>
Expand Down
4 changes: 2 additions & 2 deletions src/editor/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ class FakeEditor extends React.Component<any, FakeEditorState> {
<div className="faker-editor-container">
<nav>
<div className="logo">
<a href="https://github.com/APIs-guru/graphql-faker" target="_blank">
<a href="https://github.com/graphql-kit/graphql-faker" target="_blank">
{' '}
<img src="./logo.svg" />{' '}
</a>
Expand Down Expand Up @@ -221,7 +221,7 @@ class FakeEditor extends React.Component<any, FakeEditorState> {
<VoyagerIcon />{' '}
</li>
<li className="-pulldown -link">
<a href="https://github.com/APIs-guru/graphql-faker" target="_blank">
<a href="https://github.com/graphql-kit/graphql-faker" target="_blank">
{' '}
<GithubIcon />{' '}
</a>
Expand Down
2 changes: 1 addition & 1 deletion src/fake_definition.ts
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ export function buildWithFakeDefinitions(
const schemaAST = parseSDL(schemaSDL);

// Remove Faker's own definitions that were added to have valid SDL for other
// tools, see: https://github.com/APIs-guru/graphql-faker/issues/75
// tools, see: https://github.com/graphql-kit/graphql-faker/issues/75
const filteredAST = {
...schemaAST,
definitions: schemaAST.definitions.filter((def) => {
Expand Down

0 comments on commit 340aed3

Please sign in to comment.