Releases: cardano-foundation/cardano-graphql
Cardano GraphQL 1.0.0
Cardano GraphQL 1.0.0
First production release of a service and TypeScript libraries to query the Cardano blockchain database over a GraphQL interface. A server is composed using lower level packages, which can be used independently, offering flexibility during integration. The supplied docker-compose file provides a good starting point, and serves as a working reference for configuring alternative deployments.
Packages
@cardano-graphql/server
Exposes a HTTP server to route queries to the GraphQL execution engine.
@cardano-graphql/api-cardano-db-hasura
Contains the executable GraphQLSchema
for the single datasource, to stitch with another schema, or simply control the server component.
@cardano-graphql/ts-client
is available for statically checking API interactions, and includes a copy of the SDL .schema
.
@cardano-graphql/cli
assists with local docker-compose deployments, such as making volume snapshots or rebuilding the database.
The packages can be reliably built from source in a sandbox using the yarn package manager with supplied offline cache, or installed from npm.
Service dependencies:
New Features from development releases in the 0.x.x range
Cardano.networkName
Transaction.size
Transaction.blockIndex
- Established relationships to easily access transaction and block information from inputs and outputs
TransactionInput.transaction
TransactionInput.sourceTransaction
(where it was an output)TransactionOutput.transaction
- CLI tool
cgql
with commands to assist with Docker-based deployments, including init, snapshotting, and db rebuild CardanoDbMeta
viaQuery.cardanoDbMeta
exposes information to understand if the dataset is complete including:initialized
,syncPercentage
, andslotDiffFromNetworkTip
. Theepoch
data is incomplete untilinitialized = true
, which takes around 2 hours for the initial sync as of block number4388632
.syncPercentage
orslotDiffFromNetworkTip
provides progress
Improvements
- Optimised versions of some key aggregated queries:
Block.transactionsCount
Epoch.transactionsCount
Epoch.blocksCount
- Explicit ordering of
Transaction.outputs
by their naturalindex
Cardano
now matches the postgres view, that is an improvement over the previous version which performed two queries- The codebase is now modularized to enable new API segments to be added alongside as an extension, composition of services for more use cases, ability to import the executable schema and host on a different server. The packages are published, to npm, or can be built from source:
- @cardano-graphql/server
- @cardano-graphql/api-cardano-db-hasura
- @cardano-graphql/client-ts
- @cardano-graphql/cli
- @cardano-graphql/util-dev
- @cardano-graphql/util
- Packages are now managed via an offline npm package cache, to facilitate reproducible builds when the
--offline
flag
is passed to yarn install
Breaking changes
- PostgreSQL views are now being managed in this codebase, so either
- switch to the new Docker image
inputoutput/cardano-graphql-hasura
, or - use the Hasura CLI as demonstrated in the entrypoint. The custom Docker image makes it possible to check your own
docker-compose
file into source control, as it supports Docker secrets, and, also, removes the requirement to clone this source repository to get data for mounting at runtime
- switch to the new Docker image
- Transaction and Block IDs are now labelled as
hash
, aligning with the domain terminology Block.merkelRootHash
is renamed toBlock.merkelRoot
- The aggregated and known very large numbers are now typed as String. Cardano JS has utilities to work with these return values, currently limited to currency conversion
Transaction.fee
, previously,String
, is nowBigInt
- Entrypoint for the service previously found in
./dist/index.js
is now in./packages/server/dist/index.js
after building Cardano.blockHeight
removed in favour ofCardano.tip.number
, wheretip
is equal to the most recentBlock
. This unlocks
more information such asslotNo
, and capability to traverse the chain, etc.- Dates are now coerced to RFC 3339 UTC date-time strings
Maintenance
- Upgraded to Hasura 1.2.1
Known issues
- #164 Field aliasing via delegated schema does not remap field names
Documentation
README provides complete overview and documentation:
Supported Platforms
- Linux 64-bit
- Docker
Sign off
Role | Approval |
---|---|
Technical Lead | ✔️ |
QA Engineer | ✔️ |
Ops | ✔️ |
Release Manager | ✔️ |
v1.0.0-rc.14
Reinstates nix-build support, using an offline npm package cache.
Compatible with:
cardano-node 1.14.2
cardano-db-sync-extended 2.1.0
v1.0.0-rc.13
This release will be followed closely by the production 1.0.0
release
Compatible with:
cardano-node 1.14.2
|cardano-node 1.13.0
cardano-db-sync-extended 2.1.0
cardano-db-sync@2.1.0
: "This release requires the database to be dropped and recreated." If using Docker, see the Wiki for info
Features
Establish relationships to easily access transaction and block information from inputs and outputs
TransactionInput.transaction
TransactionInput.sourceTransaction
(where it was an output)TransactionOutput.transaction
CardanoDbMeta
viaQuery.cardanoDbMeta
exposes information to understand if the dataset is complete including:
initialized
,syncPercentage
, andslotDiffFromNetworkTip
. Theepoch
data is incomplete untilinitialized = true
, which takes around 2 hours for the initial sync as of block number4388632
.syncPercentage
or
slotDiffFromNetworkTip
provides progress.- The codebase is now modularized to enable new API segments to be added alongside as an extension, composition of services
for more use-cases, ability to import the executable schema and host on a different server. The packages will be published to npm,
or can be built from source:- @cardano-graphql/server
- @cardano-graphql/api-cardano-db-hasura
- @cardano-graphql/client-ts
- @cardano-graphql/cli
- @cardano-graphql/util-dev
- @cardano-graphql/util
⚠️ Breaking Changes
- Entrypoint for the service previously found in
./dist/index.js
is now./packages/server/dist/index.js
after building. Cardano.blockHeight
removed in favour ofCardano.tip.number
, wheretip
= the most recentBlock
. This unlocks
more information such asslotNo
, and capability to traverse the chain etc.- Dates are now coerced to RFC 3339 UTC date-time strings
v1.0.0-rc.12
- Refactors the CLI to better support Docker operations
- Nix service upgrade
- Removes invalid TransactionInput.index -
⚠️ Breaking change
Compatible with:
cardano-node 1.13.0
cardano-db-sync-extended 2.0.0
v1.0.0-rc.11
v1.0.0-rc.10
- Update dependencies Hasura
graphql-engine
to1.1.1
- Implements whitelist feature
v1.0.0-rc.9
Bump versions
v1.0.0-rc.8
v1.0.0-rc.8
v1.0.0-rc.7
Merge pull request #137 from input-output-hk/release/1.0.0-rc.7 Version bump for release 1.0.0-rc.7
v1.0.0-rc.6
Merge pull request #135 from input-output-hk/release/1.0.0-rc.6 Version bump and changelog update for release 1.0.0-rc.6