Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix links containing input-output-hk/cardano-graphql to point to carda… #849

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
422 changes: 211 additions & 211 deletions CHANGELOG.md

Large diffs are not rendered by default.

36 changes: 18 additions & 18 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,21 +12,21 @@

## Overview

Cross-platform, _typed_, and **queryable** API for Cardano. The project contains multiple [packages] for composing
GraphQL services to meet specific application demands, and a [docker compose stack] serving the included
Cross-platform, _typed_, and **queryable** API for Cardano. The project contains multiple [packages] for composing
GraphQL services to meet specific application demands, and a [docker compose stack] serving the included
[cardano-graphql-server Dockerfile], the extended [hasura Dockerfile], [cardano-node-ogmios]. The [schema] is defined in
native `.graphql`, and used to generate a [TypeScript package for client-side static typing]. A mutation is available to
native `.graphql`, and used to generate a [TypeScript package for client-side static typing]. A mutation is available to
submit a signed and serialized transaction to the local node.

[Apollo Server] exposes the NodeJS execution engine over a HTTP endpoint, and includes support for open source metrics
via Prometheus, and implementing operation filtering to deny unexpected queries. Should you wish to have more control
over the server, or stitch the schema with an existing service, consider importing the executable schema from the
over the server, or stitch the schema with an existing service, consider importing the executable schema from the
`@cardano-graphql/api-*` packages only.

**GraphQL** is a query language and execution environment with server and client implementations across many programming
languages. The language can be serialized for network transmission, schema implementations hashed for assurance, and is
suited for describing most domains.

**TypeScript** (and JS) has the largest pool of production-ready libraries, developers, and interoperability in the
GraphQL and web ecosystem in general. TypeScript definitions for the schema, generated by [GraphQL Code Generator], are
[available on npm].
Expand All @@ -42,7 +42,7 @@ git clone \
--single-branch \
--branch 8.0.0 \
--recurse-submodules \
https://github.com/input-output-hk/cardano-graphql.git \
https://github.com/cardano-foundation/cardano-graphql.git \
&& cd cardano-graphql
```

Expand All @@ -53,7 +53,7 @@ Choose **one** of the following:
Boot the [docker compose stack] using a convention for container and volume scoping based on the network, as well as
optionally hitting the remote cache to speed up the build. The containers are detached, so you can terminate the log
console session freely. See [Docker Compose docs] to tailor for your use-case

<details open>
<summary><i>mainnet</i></summary>

Expand Down Expand Up @@ -193,7 +193,7 @@ docker compose -p preview down

### Check Cardano DB sync progress
Use the GraphQL Playground in the browser at http://localhost:3100/graphql:
``` graphql
``` graphql
{ cardanoDbMeta { initialized syncPercentage }}
```
or via command line:
Expand Down Expand Up @@ -231,7 +231,7 @@ For more information, have a look at the [Wiki :book:].

See [Using Docker].

### From Source
### From Source

See [Building].

Expand All @@ -246,11 +246,11 @@ See [Building].
<hr/>

<p align="center">
<a href="https://github.com/input-output-hk/cardano-graphql/blob/master/LICENSE"><img src="https://img.shields.io/github/license/input-output-hk/cardano-graphql.svg?style=for-the-badge" /></a>
<a href="https://github.com/cardano-foundation/cardano-graphql/blob/master/LICENSE"><img src="https://img.shields.io/github/license/cardano-foundation/cardano-graphql.svg?style=for-the-badge" /></a>
</p>

[img_src_CI]: https://github.com/input-output-hk/cardano-graphql/workflows/CI/badge.svg
[workflow_CI]: https://github.com/input-output-hk/cardano-graphql/actions?query=workflow%3ACI
[img_src_CI]: https://github.com/cardano-foundation/cardano-graphql/workflows/CI/badge.svg
[workflow_CI]: https://github.com/cardano-foundation/cardano-graphql/actions?query=workflow%3ACI
[packages]: ./packages
[docker compose stack]: ./docker-compose.yml
[Docker Compose docs]: https://docs.docker.com/compose/
Expand All @@ -263,9 +263,9 @@ See [Building].
[GraphQL Code Generator]: https://graphql-code-generator.com
[available on npm]: https://www.npmjs.com/package/cardano-graphql-ts
[Ogmios]: https://ogmios.dev/
[releases]: https://github.com/input-output-hk/cardano-graphql/releases
[Wiki :book:]: https://github.com/input-output-hk/cardano-graphql/wiki
[Using Docker]: https://github.com/input-output-hk/cardano-graphql/wiki/Docker
[Building]: https://github.com/input-output-hk/cardano-graphql/wiki/Building
[API Documentation]: https://input-output-hk.github.io/cardano-graphql
[releases]: https://github.com/cardano-foundation/cardano-graphql/releases
[Wiki :book:]: https://github.com/cardano-foundation/cardano-graphql/wiki
[Using Docker]: https://github.com/cardano-foundation/cardano-graphql/wiki/Docker
[Building]: https://github.com/cardano-foundation/cardano-graphql/wiki/Building
[API Documentation]: https://cardano-foundation.github.io/cardano-graphql
[Example Queries - Cardano DB Hasura]: ./packages/api-cardano-db-hasura/src/example_queries
2 changes: 1 addition & 1 deletion docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "cardano-graphql-docs",
"version": "0.1.0",
"private": true,
"homepage": "http://input-output-hk.github.io/cardano-graphql",
"homepage": "http://cardano-foundation.github.io/cardano-graphql",
"dependencies": {
"@babel/core": "7.9.0",
"@svgr/webpack": "4.3.3",
Expand Down
2 changes: 1 addition & 1 deletion nix/cells/automation/pipelines.nix
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# When running locally, the current directory is already bind-mounted into the container,
# so we don't need to fetch the source from GitHub and we don't want to report a GitHub status.
enable = config.actionRun.facts != {};
repository = "input-output-hk/cardano-graphql";
repository = "cardano-foundation/cardano-graphql";
revision = config.preset.github.lib.readRevision inputs.cells.cloud.library.actionCiInputName null;
};
};
Expand Down
2 changes: 1 addition & 1 deletion nix/cells/cloud/actions.nix
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

let github = {
#input: "${cell.library.actionCiInputName}"
#repo: "input-output-hk/cardano-graphql"
#repo: "cardano-foundation/cardano-graphql"
}

#lib.merge
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/input-output-hk/cardano-graphql/issues"
"url": "https://github.com/cardano-foundation/cardano-graphql/issues"
},
"homepage": "https://github.com/input-output-hk/cardano-graphql#README.md",
"homepage": "https://github.com/cardano-foundation/cardano-graphql#README.md",
"devDependencies": {
"@graphql-codegen/cli": "^1.15.2",
"@graphql-codegen/typescript": "^1.15.2",
Expand Down
6 changes: 3 additions & 3 deletions packages/api-cardano-db-hasura/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@
},
"repository": {
"type": "git",
"url": "git+https://github.com/input-output-hk/cardano-graphql.git"
"url": "git+https://github.com/cardano-foundation/cardano-graphql.git"
},
"author": "Rhys Bartels-Waller",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/input-output-hk/cardano-graphql/issues"
"url": "https://github.com/cardano-foundation/cardano-graphql/issues"
},
"homepage": "https://github.com/input-output-hk/cardano-graphql/blob/master/packages/api-cardano-db-hasura/README.md",
"homepage": "https://github.com/cardano-foundation/cardano-graphql/blob/master/packages/api-cardano-db-hasura/README.md",
"files": [
"dist/*",
"!dist/__test__",
Expand Down
6 changes: 3 additions & 3 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
},
"repository": {
"type": "git",
"url": "git+https://github.com/input-output-hk/cardano-graphql.git"
"url": "git+https://github.com/cardano-foundation/cardano-graphql.git"
},
"keywords": [
"Cardano",
Expand All @@ -37,9 +37,9 @@
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/input-output-hk/cardano-graphql/issues"
"url": "https://github.com/cardano-foundation/cardano-graphql/issues"
},
"homepage": "https://github.com/input-output-hk/cardano-graphql/blob/master/packages/cli/README.md",
"homepage": "https://github.com/cardano-foundation/cardano-graphql/blob/master/packages/cli/README.md",
"dependencies": {
"appdirectory": "^0.1.0",
"chalk": "^3.0.0",
Expand Down
6 changes: 3 additions & 3 deletions packages/client-ts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "A client package for Cardano GraphQL, including the GraphQL schema and TypeScript definitions generated from it",
"repository": {
"type": "git",
"url": "git+https://github.com/input-output-hk/cardano-graphql.git"
"url": "git+https://github.com/cardano-foundation/cardano-graphql.git"
},
"main": "api/index.js",
"typings": "api/index.d.ts",
Expand All @@ -26,9 +26,9 @@
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/input-output-hk/cardano-graphql/issues"
"url": "https://github.com/cardano-foundation/cardano-graphql/issues"
},
"homepage": "https://github.com/input-output-hk/cardano-graphql/blob/master/packages/client-ts/README.md",
"homepage": "https://github.com/cardano-foundation/cardano-graphql/blob/master/packages/client-ts/README.md",
"files": [
"api",
"LICENSE",
Expand Down
6 changes: 3 additions & 3 deletions packages/server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@
},
"repository": {
"type": "git",
"url": "git+https://github.com/input-output-hk/cardano-graphql.git"
"url": "git+https://github.com/cardano-foundation/cardano-graphql.git"
},
"author": "Rhys Bartels-Waller",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/input-output-hk/cardano-graphql/issues"
"url": "https://github.com/cardano-foundation/cardano-graphql/issues"
},
"homepage": "https://github.com/input-output-hk/cardano-graphql/blob/master/packages/server/README.md",
"homepage": "https://github.com/cardano-foundation/cardano-graphql/blob/master/packages/server/README.md",
"dependencies": {
"@cardano-graphql/api-cardano-db-hasura": "8.0.0",
"@cardano-ogmios/schema": "5.5.7",
Expand Down
2 changes: 1 addition & 1 deletion packages/server/src/Server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ export class Server {
if (result.data.cardanoDbMeta.initialized && assetSyncPercentage > 99) {
this.logger.info({ module: 'Server' }, 'DB ready')
// Promise not awaited purposely
// https://github.com/input-output-hk/cardano-graphql/issues/459
// https://github.com/cardano-foundation/cardano-graphql/issues/459
clearIntervalAsync(this.syncProgress)
} else {
this.logger.info({ module: 'Server' }, `Sync Progress: cardano-db-sync: ${result.data.cardanoDbMeta.syncPercentage}% | Asset: ${assetSyncPercentage}%`)
Expand Down
6 changes: 3 additions & 3 deletions packages/util-dev/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@
},
"repository": {
"type": "git",
"url": "git+https://github.com/input-output-hk/cardano-graphql.git"
"url": "git+https://github.com/cardano-foundation/cardano-graphql.git"
},
"author": "Rhys Bartels-Waller",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/input-output-hk/cardano-graphql/issues"
"url": "https://github.com/cardano-foundation/cardano-graphql/issues"
},
"homepage": "https://github.com/input-output-hk/cardano-graphql/blob/master/packages/util-dev/README.md",
"homepage": "https://github.com/cardano-foundation/cardano-graphql/blob/master/packages/util-dev/README.md",
"devDependencies": {
"@cardano-graphql/util": "8.0.0",
"shx": "^0.3.2"
Expand Down
6 changes: 3 additions & 3 deletions packages/util/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@
},
"repository": {
"type": "git",
"url": "git+https://github.com/input-output-hk/cardano-graphql.git"
"url": "git+https://github.com/cardano-foundation/cardano-graphql.git"
},
"author": "Rhys Bartels-Waller",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/input-output-hk/cardano-graphql/issues"
"url": "https://github.com/cardano-foundation/cardano-graphql/issues"
},
"homepage": "https://github.com/input-output-hk/cardano-graphql/blob/master/packages/util/README.md",
"homepage": "https://github.com/cardano-foundation/cardano-graphql/blob/master/packages/util/README.md",
"dependencies": {
"dayjs": "^1.8.29",
"graphql": "14.5.8",
Expand Down