Skip to content

Commit 4853b93

Browse files
committed
fix repo name
1 parent 4c05a3e commit 4853b93

File tree

37 files changed

+62
-62
lines changed

37 files changed

+62
-62
lines changed

.changeset/config.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"changelog": [
44
"@changesets/changelog-github",
55
{
6-
"repo": "kamilkisiela/graphql-inspector"
6+
"repo": "graphql-hive/graphql-inspector"
77
}
88
],
99
"commit": false,

.github/ISSUE_TEMPLATE/config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
blank_issues_enabled: false
22
contact_links:
33
- name: Have a question?
4-
url: https://github.com/kamilkisiela/graphql-inspector/discussions/new
4+
url: https://github.com/graphql-hive/graphql-inspector/discussions/new
55
about:
66
Not sure about something? need help from the community? have a question to our team? please
77
ask and answer questions here.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,4 +78,4 @@ from [Contributor Covenant](https://www.contributor-covenant.org/)
7878

7979
## License
8080

81-
[MIT](https://github.com/kamilkisiela/graphql-inspector/blob/master/LICENSE) © Kamil Kisiela
81+
[MIT](https://github.com/graphql-hive/graphql-inspector/blob/master/LICENSE) © Kamil Kisiela

example/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"coverage": "pnpm graphql-inspector coverage './documents/*.graphql' ./schemas/schema.graphql",
66
"coverage:write": "pnpm graphql-inspector coverage './documents/*.graphql' ./schemas/schema.graphql --silent --write ./coverage.json",
77
"diff": "pnpm graphql-inspector diff ./schemas/schema.graphql ./schemas/new.graphql",
8-
"diff:github": "pnpm graphql-inspector diff github:kamilkisiela/graphql-inspector#master:example/schemas/schema.json ./schemas/new.graphql --token PERSONAL_ACCESS_TOKEN",
8+
"diff:github": "pnpm graphql-inspector diff github:graphql-hive/graphql-inspector#master:example/schemas/schema.json ./schemas/new.graphql --token PERSONAL_ACCESS_TOKEN",
99
"diff:json": "pnpm graphql-inspector diff ./schemas/schema.json ./schemas/new.json",
1010
"diff:master": "pnpm graphql-inspector diff git:master:example/schemas/schema.graphql ./schemas/schema.graphql",
1111
"diff:same": "pnpm graphql-inspector diff ./schemas/schema.js ./schemas/schema.graphql",

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "Tooling for GraphQL. Compare GraphQL Schemas, check documents, find breaking changes, find similar types.",
44
"repository": {
55
"type": "git",
6-
"url": "kamilkisiela/graphql-inspector"
6+
"url": "graphql-hive/graphql-inspector"
77
},
88
"author": {
99
"name": "Kamil Kisiela",

packages/action/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"description": "GraphQL Inspector functionality for GitHub Actions",
66
"repository": {
77
"type": "git",
8-
"url": "kamilkisiela/graphql-inspector",
8+
"url": "graphql-hive/graphql-inspector",
99
"directory": "packages/action"
1010
},
1111
"author": {

packages/ci/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"description": "Tooling for GraphQL. Compare GraphQL Schemas, check documents, find breaking changes, find similar types.",
66
"repository": {
77
"type": "git",
8-
"url": "kamilkisiela/graphql-inspector",
8+
"url": "graphql-hive/graphql-inspector",
99
"directory": "packages/ci"
1010
},
1111
"author": {

packages/cli/README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ import { Change, diff } from '@graphql-inspector/core'
5050
const changes: Change[] = diff(schemaA, schemaB)
5151
```
5252

53-
![Diff](https://raw.githubusercontent.com/kamilkisiela/graphql-inspector/master/assets/diff.jpg)
53+
![Diff](https://raw.githubusercontent.com/graphql-hive/graphql-inspector/master/assets/diff.jpg)
5454

5555
### Find similar types
5656

@@ -68,7 +68,7 @@ import { similar, SimilarMap } from '@graphql-inspector/core'
6868
const similar: SimilarMap = similar(schema, typename, threshold)
6969
```
7070

71-
![Similar](https://raw.githubusercontent.com/kamilkisiela/graphql-inspector/master/assets/similar.jpg)
71+
![Similar](https://raw.githubusercontent.com/graphql-hive/graphql-inspector/master/assets/similar.jpg)
7272

7373
### Check coverage
7474

@@ -87,7 +87,7 @@ import { coverage, SchemaCoverage } from '@graphql-inspector/core'
8787
const schemaCoverage: SchemaCoverage = coverage(schema, documents)
8888
```
8989

90-
![Coverage](https://raw.githubusercontent.com/kamilkisiela/graphql-inspector/master/assets/coverage.jpg)
90+
![Coverage](https://raw.githubusercontent.com/graphql-hive/graphql-inspector/master/assets/coverage.jpg)
9191

9292
### Validate documents
9393

@@ -105,7 +105,7 @@ import { InvalidDocument, validate } from '@graphql-inspector/core'
105105
const invalid: InvalidDocument[] = validate(documentsGlob, schema)
106106
```
107107

108-
![Validate](https://raw.githubusercontent.com/kamilkisiela/graphql-inspector/master/assets/validate.jpg)
108+
![Validate](https://raw.githubusercontent.com/graphql-hive/graphql-inspector/master/assets/validate.jpg)
109109

110110
### Audit documents
111111

@@ -197,7 +197,7 @@ $ graphql-inspector-github
197197

198198
Get GitHub annotations in your PRs.
199199

200-
![GitHub](https://raw.githubusercontent.com/kamilkisiela/graphql-inspector/master/assets/github.jpg)
200+
![GitHub](https://raw.githubusercontent.com/graphql-hive/graphql-inspector/master/assets/github.jpg)
201201

202202
### CLI in more details
203203

@@ -300,4 +300,4 @@ Find out what the CLI is capable of:
300300

301301
## License
302302

303-
[MIT](https://github.com/kamilkisiela/graphql-inspector/blob/master/LICENSE) © Kamil Kisiela
303+
[MIT](https://github.com/graphql-hive/graphql-inspector/blob/master/LICENSE) © Kamil Kisiela

packages/cli/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"description": "Tooling for GraphQL. Compare GraphQL Schemas, check documents, find breaking changes, find similar types.",
66
"repository": {
77
"type": "git",
8-
"url": "kamilkisiela/graphql-inspector",
8+
"url": "graphql-hive/graphql-inspector",
99
"directory": "packages/cli"
1010
},
1111
"author": {

packages/commands/audit/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"description": "Audit Documents in GraphQL Inspector",
66
"repository": {
77
"type": "git",
8-
"url": "kamilkisiela/graphql-inspector",
8+
"url": "graphql-hive/graphql-inspector",
99
"directory": "packages/commands/audit"
1010
},
1111
"author": {

packages/commands/commands/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"description": "Plugin system for commands in GraphQL Inspector",
66
"repository": {
77
"type": "git",
8-
"url": "kamilkisiela/graphql-inspector",
8+
"url": "graphql-hive/graphql-inspector",
99
"directory": "packages/commands/commands"
1010
},
1111
"author": {

packages/commands/coverage/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"description": "Schema Coverage in GraphQL Inspector",
66
"repository": {
77
"type": "git",
8-
"url": "kamilkisiela/graphql-inspector",
8+
"url": "kamilkisgraphql-hiveiela/graphql-inspector",
99
"directory": "packages/commands/coverage"
1010
},
1111
"author": {

packages/commands/diff/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"description": "Compare GraphQL Schemas",
66
"repository": {
77
"type": "git",
8-
"url": "kamilkisiela/graphql-inspector",
8+
"url": "graphql-hive/graphql-inspector",
99
"directory": "packages/commands/diff"
1010
},
1111
"author": {

packages/commands/docs/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"description": "Open GraphQL Inspector Documentation",
66
"repository": {
77
"type": "git",
8-
"url": "kamilkisiela/graphql-inspector",
8+
"url": "graphql-hive/graphql-inspector",
99
"directory": "packages/commands/docs"
1010
},
1111
"author": {

packages/commands/introspect/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"description": "Introspects GraphQL Schema",
66
"repository": {
77
"type": "git",
8-
"url": "kamilkisiela/graphql-inspector",
8+
"url": "graphql-hive/graphql-inspector",
99
"directory": "packages/commands/introspect"
1010
},
1111
"author": {

packages/commands/serve/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"description": "Serves GraphQL Schemma",
66
"repository": {
77
"type": "git",
8-
"url": "kamilkisiela/graphql-inspector",
8+
"url": "graphql-hive/graphql-inspector",
99
"directory": "packages/commands/docs"
1010
},
1111
"author": {

packages/commands/similar/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"description": "Find similar types in GraphQL Schema",
66
"repository": {
77
"type": "git",
8-
"url": "kamilkisiela/graphql-inspector",
8+
"url": "graphql-hive/graphql-inspector",
99
"directory": "packages/commands/similar"
1010
},
1111
"author": {

packages/commands/validate/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"description": "Validate Documents in GraphQL Inspector",
66
"repository": {
77
"type": "git",
8-
"url": "kamilkisiela/graphql-inspector",
8+
"url": "graphql-hive/graphql-inspector",
99
"directory": "packages/commands/validate"
1010
},
1111
"author": {

packages/config/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"type": "module",
55
"repository": {
66
"type": "git",
7-
"url": "kamilkisiela/graphql-inspector",
7+
"url": "graphql-hive/graphql-inspector",
88
"directory": "packages/config"
99
},
1010
"author": {

packages/core/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# GraphQL Inspector
22

3-
[![CircleCI](https://circleci.com/gh/kamilkisiela/graphql-inspector.svg?style=shield&circle-token=d1cd06aba321ee2b7bf8bd2041104643639463b0)](https://circleci.com/gh/kamilkisiela/graphql-inspector)
3+
[![CircleCI](https://circleci.com/gh/graphql-hive/graphql-inspector.svg?style=shield&circle-token=d1cd06aba321ee2b7bf8bd2041104643639463b0)](https://circleci.com/gh/graphql-hive/graphql-inspector)
44
[![npm version](https://badge.fury.io/js/@graphql-inspector/core.svg)](https://npmjs.com/package/@graphql-inspector/core)
55

66
**GraphQL Inspector** outputs a list of changes between two GraphQL schemas. Every change is
@@ -54,4 +54,4 @@ const schemaCoverage: SchemaCoverage = coverage(schema, documents)
5454

5555
## License
5656

57-
[MIT](https://github.com/kamilkisiela/graphql-inspector/blob/master/LICENSE) © Kamil Kisiela
57+
[MIT](https://github.com/graphql-hive/graphql-inspector/blob/master/LICENSE) © Kamil Kisiela

packages/core/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"description": "Tooling for GraphQL. Compare GraphQL Schemas, check documents, find breaking changes, find similar types.",
66
"repository": {
77
"type": "git",
8-
"url": "kamilkisiela/graphql-inspector",
8+
"url": "graphql-hive/graphql-inspector",
99
"directory": "packages/core"
1010
},
1111
"author": {

packages/loaders/code/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"description": "Load GraphQL Schema and Documents from TypeScript and JavaScript code",
66
"repository": {
77
"type": "git",
8-
"url": "kamilkisiela/graphql-inspector",
8+
"url": "graphql-hive/graphql-inspector",
99
"directory": "packages/plugins/loaders/code"
1010
},
1111
"author": {

packages/loaders/git/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"description": "Load GraphQL Schema and Documents from Git repository",
66
"repository": {
77
"type": "git",
8-
"url": "kamilkisiela/graphql-inspector",
8+
"url": "graphql-hive/graphql-inspector",
99
"directory": "packages/plugins/loaders/git"
1010
},
1111
"author": {

packages/loaders/github/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"description": "Load GraphQL Schema and Documents from GitHub repository",
66
"repository": {
77
"type": "git",
8-
"url": "kamilkisiela/graphql-inspector",
8+
"url": "graphql-hive/graphql-inspector",
99
"directory": "packages/plugins/loaders/github"
1010
},
1111
"author": {

packages/loaders/graphql/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"description": "Load GraphQL Schema and Documents from GraphQL files (.graphql, .gql etc)",
66
"repository": {
77
"type": "git",
8-
"url": "kamilkisiela/graphql-inspector",
8+
"url": "graphql-hive/graphql-inspector",
99
"directory": "packages/plugins/loaders/graphql"
1010
},
1111
"author": {

packages/loaders/json/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"description": "Load GraphQL Schema from JSON files (introspection result)",
66
"repository": {
77
"type": "git",
8-
"url": "kamilkisiela/graphql-inspector",
8+
"url": "graphql-hive/graphql-inspector",
99
"directory": "packages/plugins/loaders/json"
1010
},
1111
"author": {

packages/loaders/loaders/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"description": "Loaders in GraphQL Inspector",
66
"repository": {
77
"type": "git",
8-
"url": "kamilkisiela/graphql-inspector",
8+
"url": "graphql-hive/graphql-inspector",
99
"directory": "packages/plugins/plugin"
1010
},
1111
"author": {

packages/loaders/url/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"description": "Load GraphQL Schema from GraphQL endpoint (introspection)",
66
"repository": {
77
"type": "git",
8-
"url": "kamilkisiela/graphql-inspector",
8+
"url": "graphql-hive/graphql-inspector",
99
"directory": "packages/plugins/loaders/url"
1010
},
1111
"author": {

packages/logger/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"description": "Logger for GraphQL Inspector",
66
"repository": {
77
"type": "git",
8-
"url": "kamilkisiela/graphql-inspector",
8+
"url": "graphql-hive/graphql-inspector",
99
"directory": "packages/logger"
1010
},
1111
"author": {

website/src/components/index-page.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ const FEATURE_LIST = [
2626
children: 'View source code',
2727
title: 'View source code',
2828
target: '_blank',
29-
href: 'https://github.com/kamilkisiela/graphql-inspector',
29+
href: 'https://github.com/graphql-hive/graphql-inspector',
3030
},
3131
},
3232
{
@@ -68,7 +68,7 @@ const FEATURE_LIST = [
6868
children: 'View source code',
6969
title: 'View source code',
7070
target: '_blank',
71-
href: 'https://github.com/kamilkisiela/graphql-inspector',
71+
href: 'https://github.com/graphql-hive/graphql-inspector',
7272
},
7373
},
7474
];

website/src/pages/docs/installation.mdx

+3-3
Original file line numberDiff line numberDiff line change
@@ -102,17 +102,17 @@ import { diff, validate, coverage, ... } from '@graphql-inspector/core'
102102
GraphQL Inspector is also available on Docker.
103103

104104
```sh
105-
docker run kamilkisiela/graphql-inspector --help
105+
docker run graphql-hive/graphql-inspector --help
106106
```
107107

108108
Bind volumes to `/app` for working with local files, for example:
109109

110110
```sh
111-
docker run -v $PWD:/app kamilkisiela/graphql-inspector graphql-inspector diff old.graphql new.graphql
111+
docker run -v $PWD:/app graphql-hive/graphql-inspector graphql-inspector diff old.graphql new.graphql
112112
```
113113

114114
To run commands interactively inside of the container, use the following:
115115

116116
```sh
117-
docker run -it kamilkisiela/graphql-inspector
117+
docker run -it graphql-hive/graphql-inspector
118118
```

website/src/pages/docs/migration-guides/from-app-to-action.mdx

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Action provides similar functionality and is actively maintained.
1313

1414
<Callout type="warning">The GraphQL Inspector App has been deprecated!</Callout>
1515
<Callout type="info">
16-
You can [visit the issue](https://github.com/kamilkisiela/graphql-inspector/issues/2648) about the
16+
You can [visit the issue](https://github.com/graphql-hive/graphql-inspector/issues/2648) about the
1717
deprecation of the GraphQL Inspector App on GitHub
1818
</Callout>
1919

@@ -74,7 +74,7 @@ You can customize this based on your needs.
7474
### 3. Set Up the Workflow Job
7575

7676
Inside your workflow file, add a job that checks your GraphQL schema using GraphQL Inspector. You
77-
can use the `kamilkisiela/graphql-inspector` action. Here's an example:
77+
can use the `graphql-hive/graphql-inspector` action. Here's an example:
7878

7979
```yaml
8080
jobs:
@@ -90,7 +90,7 @@ jobs:
9090
run: npm install
9191
9292
- name: Run GraphQL Inspector
93-
uses: kamilkisiela/graphql-inspector@v2
93+
uses: graphql-hive/graphql-inspector@v2
9494
with:
9595
schema: schema.graphql
9696
# Additional action inputs as needed

website/src/pages/docs/migration-guides/github.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import { Callout } from '@theguild/components'
1313
automate your workflow.
1414
</Callout>
1515
<Callout type="info">
16-
You can [visit the issue](https://github.com/kamilkisiela/graphql-inspector/issues/2648) about the
16+
You can [visit the issue](https://github.com/graphql-hive/graphql-inspector/issues/2648) about the
1717
deprecation of the GraphQL Inspector App on GitHub
1818
</Callout>
1919

0 commit comments

Comments
 (0)