Skip to content

Commit 340aed3

Browse files
committed
Change urls after migration to graphql-kit
1 parent 2775f15 commit 340aed3

File tree

7 files changed

+14
-15
lines changed

7 files changed

+14
-15
lines changed

README.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
![GraphQL Faker logo](./docs/faker-logo-text.png)
22

33
# GraphQL Faker
4-
5-
[![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)
4+
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)
65
[![npm](https://img.shields.io/npm/v/graphql-faker.svg)](https://www.npmjs.com/package/graphql-faker)
7-
[![David](https://img.shields.io/david/APIs-guru/graphql-faker.svg)](https://david-dm.org/APIs-guru/graphql-faker)
8-
[![David](https://img.shields.io/david/dev/APIs-guru/graphql-faker.svg)](https://david-dm.org/APIs-guru/graphql-faker?type=dev)
9-
[![npm](https://img.shields.io/npm/l/graphql-faker.svg)](https://github.com/APIs-guru/graphql-faker/blob/master/LICENSE)
6+
[![David](https://img.shields.io/david/graphql-kit/graphql-faker.svg)](https://david-dm.org/graphql-kit/graphql-faker)
7+
[![David](https://img.shields.io/david/dev/graphql-kit/graphql-faker.svg)](https://david-dm.org/graphql-kit/graphql-faker?type=dev)
8+
[![npm](https://img.shields.io/npm/l/graphql-faker.svg)](https://github.com/graphql-kit/graphql-faker/blob/master/LICENSE)
109
[![docker](https://img.shields.io/docker/build/apisguru/graphql-faker.svg)](https://hub.docker.com/r/apisguru/graphql-faker/)
1110

1211
Mock your future API or extend the existing API with realistic data from [faker.js](https://github.com/Marak/faker.js). **No coding required**.

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,14 @@
2525
},
2626
"repository": {
2727
"type": "git",
28-
"url": "git+https://github.com/APIs-guru/graphql-faker.git"
28+
"url": "git+https://github.com/graphql-kit/graphql-faker.git"
2929
},
30-
"author": "APIs.guru <[email protected]>",
30+
"author": "IvanGoncharov <[email protected]>",
3131
"license": "MIT",
3232
"bugs": {
33-
"url": "https://github.com/APIs-guru/graphql-faker/issues"
33+
"url": "https://github.com/graphql-kit/graphql-faker/issues"
3434
},
35-
"homepage": "https://github.com/APIs-guru/graphql-faker#readme",
35+
"homepage": "https://github.com/graphql-kit/graphql-faker#readme",
3636
"devDependencies": {
3737
"@types/body-parser": "1.19.0",
3838
"@types/cors": "2.8.10",

src/default-extend.graphql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# Press save or Cmd+Enter to apply the changes and update server. Switch to GraphiQL
99
# on the left panel to immediately test your changes.
1010
#
11-
# Developed with ❤️ by APIs.guru | https://github.com/APIs-guru/graphql-faker
11+
# Made in Ukraine 🇺🇦 | https://github.com/graphql-kit/graphql-faker
1212

1313
extend type ___RootTypeName___ {
1414
pet: Pet

src/default-schema.graphql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# on the left panel to immediately test your changes.
1010
# This tool also supports extending existing APIs. Check graphql-faker --help
1111
#
12-
# Developed with ❤️ by APIs.guru | https://github.com/APIs-guru/graphql-faker
12+
# Made in Ukraine 🇺🇦 | https://github.com/graphql-kit/graphql-faker
1313

1414
type Company {
1515
id: ID

src/editor/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
}
1111
</style>
1212
<link rel="stylesheet" href="main.css" />
13-
<title>GraphQL Faker by APIs.guru</title>
13+
<title>GraphQL Faker</title>
1414
</head>
1515
<body>
1616
<div id="container" clsss="app-container"></div>

src/editor/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ class FakeEditor extends React.Component<any, FakeEditorState> {
184184
<div className="faker-editor-container">
185185
<nav>
186186
<div className="logo">
187-
<a href="https://github.com/APIs-guru/graphql-faker" target="_blank">
187+
<a href="https://github.com/graphql-kit/graphql-faker" target="_blank">
188188
{' '}
189189
<img src="./logo.svg" />{' '}
190190
</a>
@@ -221,7 +221,7 @@ class FakeEditor extends React.Component<any, FakeEditorState> {
221221
<VoyagerIcon />{' '}
222222
</li>
223223
<li className="-pulldown -link">
224-
<a href="https://github.com/APIs-guru/graphql-faker" target="_blank">
224+
<a href="https://github.com/graphql-kit/graphql-faker" target="_blank">
225225
{' '}
226226
<GithubIcon />{' '}
227227
</a>

src/fake_definition.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ export function buildWithFakeDefinitions(
247247
const schemaAST = parseSDL(schemaSDL);
248248

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

0 commit comments

Comments
 (0)