Skip to content
Merged
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.

8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,16 @@ GraphQL services to meet specific application demands, and a [docker compose sta
[cardano-graphql-server Dockerfile], the extended [hasura Dockerfile], [ogmios], [cardano-node]. The [schema] is defined in
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 Down Expand Up @@ -179,7 +179,7 @@ For more information, have a look at the [Wiki :book:].

See [Using Docker].

### From Source
### From Source

See [Building].

Expand Down
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.21.8",
"@graphql-codegen/typescript": "^1.23.0",
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": "6.1.0",
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
Loading