Skip to content

Commit ce915f7

Browse files
committed
docs: fix links to graphql-compose organization
1 parent caddfcd commit ce915f7

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
# graphql-compose-mongoose
22

3-
[![travis build](https://img.shields.io/travis/nodkz/graphql-compose-mongoose.svg)](https://travis-ci.org/nodkz/graphql-compose-mongoose)
4-
[![codecov coverage](https://img.shields.io/codecov/c/github/nodkz/graphql-compose-mongoose.svg)](https://codecov.io/github/nodkz/graphql-compose-mongoose)
3+
[![travis build](https://img.shields.io/travis/graphql-compose/graphql-compose-mongoose.svg)](https://travis-ci.org/graphql-compose/graphql-compose-mongoose)
4+
[![codecov coverage](https://img.shields.io/codecov/c/github/graphql-compose/graphql-compose-mongoose.svg)](https://codecov.io/github/graphql-compose/graphql-compose-mongoose)
55
[![](https://img.shields.io/npm/v/graphql-compose-mongoose.svg)](https://www.npmjs.com/package/graphql-compose-mongoose)
66
[![npm](https://img.shields.io/npm/dt/graphql-compose-mongoose.svg)](http://www.npmtrends.com/graphql-compose-mongoose)
7-
[![Join the chat at https://gitter.im/graphql-compose/Lobby](https://badges.gitter.im/nodkz/graphql-compose.svg)](https://gitter.im/graphql-compose/Lobby)
7+
[![Join the chat at https://gitter.im/graphql-compose/Lobby](https://badges.gitter.im/graphql-compose/graphql-compose.svg)](https://gitter.im/graphql-compose/Lobby)
88
[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg)](http://commitizen.github.io/cz-cli/)
9-
[![Greenkeeper badge](https://badges.greenkeeper.io/nodkz/graphql-compose-mongoose.svg)](https://greenkeeper.io/)
9+
[![Greenkeeper badge](https://badges.greenkeeper.io/graphql-compose/graphql-compose-mongoose.svg)](https://greenkeeper.io/)
1010

1111

12-
This is a plugin for [graphql-compose](https://github.com/nodkz/graphql-compose), which derives GraphQLType from your [mongoose model](https://github.com/Automattic/mongoose). Also derives bunch of internal GraphQL Types. Provide all CRUD resolvers, including `graphql connection`, also provided basic search via operators ($lt, $gt and so on).
12+
This is a plugin for [graphql-compose](https://github.com/graphql-compose/graphql-compose), which derives GraphQLType from your [mongoose model](https://github.com/Automattic/mongoose). Also derives bunch of internal GraphQL Types. Provide all CRUD resolvers, including `graphql connection`, also provided basic search via operators ($lt, $gt and so on).
1313

1414
Installation
1515
============
@@ -18,7 +18,7 @@ npm install graphql graphql-compose mongoose graphql-compose-mongoose --save
1818
```
1919
Modules `graphql`, `graphql-compose`, `mongoose` are in `peerDependencies`, so should be installed explicitly in your app. They have global objects and should not have ability to be installed as submodule.
2020

21-
If you want to add additional resolvers [`connection`](https://github.com/nodkz/graphql-compose-connection) and/or [`pagination`](https://github.com/nodkz/graphql-compose-pagination) - just install following packages and `graphql-compose-mongoose` will add them automatically.
21+
If you want to add additional resolvers [`connection`](https://github.com/graphql-compose/graphql-compose-connection) and/or [`pagination`](https://github.com/graphql-compose/graphql-compose-pagination) - just install following packages and `graphql-compose-mongoose` will add them automatically.
2222
```
2323
npm install graphql-compose-connection graphql-compose-pagination --save
2424
```
@@ -40,7 +40,7 @@ Example
4040
=======
4141
Live demo: [https://graphql-compose.herokuapp.com/](https://graphql-compose.herokuapp.com/)
4242

43-
Source code: https://github.com/nodkz/graphql-compose-mongoose-example
43+
Source code: https://github.com/graphql-compose/graphql-compose-mongoose-example
4444

4545
```js
4646
import mongoose from 'mongoose';
@@ -375,7 +375,7 @@ export type limitHelperArgsOpts = {
375375

376376
Used plugins
377377
============
378-
### [graphql-compose-connection](https://github.com/nodkz/graphql-compose-connection)
378+
### [graphql-compose-connection](https://github.com/graphql-compose/graphql-compose-connection)
379379
This plugin adds `connection` resolver. Build in mechanism allows sort by any unique indexes (not only by id). Also supported compound sorting (by several fields).
380380

381381
Besides standard connection arguments `first`, `last`, `before` and `after`, also added great arguments:
@@ -384,9 +384,9 @@ Besides standard connection arguments `first`, `last`, `before` and `after`, als
384384

385385
This plugin completely follows to [Relay Cursor Connections Specification](https://facebook.github.io/relay/graphql/connections.htm).
386386

387-
### [graphql-compose-pagination](https://github.com/nodkz/graphql-compose-pagination)
387+
### [graphql-compose-pagination](https://github.com/graphql-compose/graphql-compose-pagination)
388388
This plugin adds `pagination` resolver.
389389

390390
License
391391
=======
392-
[MIT](https://github.com/nodkz/graphql-compose-mongoose/blob/master/LICENSE.md)
392+
[MIT](https://github.com/graphql-compose/graphql-compose-mongoose/blob/master/LICENSE.md)

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"main": "lib/index.js",
99
"repository": {
1010
"type": "git",
11-
"url": "https://github.com/nodkz/graphql-compose-mongoose.git"
11+
"url": "https://github.com/graphql-compose/graphql-compose-mongoose.git"
1212
},
1313
"keywords": [
1414
"graphql",
@@ -19,9 +19,9 @@
1919
],
2020
"license": "MIT",
2121
"bugs": {
22-
"url": "https://github.com/nodkz/graphql-compose-mongoose/issues"
22+
"url": "https://github.com/graphql-compose/graphql-compose-mongoose/issues"
2323
},
24-
"homepage": "https://github.com/nodkz/graphql-compose-mongoose",
24+
"homepage": "https://github.com/graphql-compose/graphql-compose-mongoose",
2525
"dependencies": {
2626
"babel-runtime": "^6.26.0",
2727
"object-path": "^0.11.4"
@@ -31,7 +31,7 @@
3131
"graphql-compose-pagination": ">=1.1.5"
3232
},
3333
"peerDependencies": {
34-
"graphql-compose": ">=3.0.2",
34+
"graphql-compose": ">=3.0.3",
3535
"mongoose": ">=4.0.0 || >=5.0.0"
3636
},
3737
"devDependencies": {

0 commit comments

Comments
 (0)