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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 6 additions & 6 deletions
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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": {

0 commit comments

Comments
 (0)