Mokhtar Naamani cc7996c11e Merge branch 'pioneer-antioch' into antioch-integration-tests пре 4 година
..
bootstrap 7886c8d5bd Upgrade apps to @polkadot/api 4.2.1 (unfinished) пре 4 година
mappings 08b5b84981 query-node: fix isCurated value casting пре 4 година
scripts f9e9c8826b query-node: fix integration tests пре 4 година
.gitignore 76916dfdd6 query-node: do not check in generated code пре 4 година
README.md fe235ebd3f query-node: configure with two separate databases пре 4 година
build.sh 04df68c182 query-node: point processor at correct database and do typeorm migrations for both DBs пре 4 година
db-migrate.sh 6e8c457127 query-node: factor out db:migrate to script пре 4 година
indexer-tsconfig.json bdb01a7d87 add esModuleInterop flag to indexer-tsconfig.json пре 4 година
package.json 356a23d3ee Versioning пре 4 година
processor-start.sh 29c98cb97b do not reload .env in processor-start.sh пре 4 година
run-tests.sh ef088ee0be integration-tests: wait 10s for chain to startup пре 4 година
schema.graphql 874999c584 query-node: add default schema to all newly created entities пре 4 година
tsconfig.json 94e8fb7ae8 Query node - fix @joystream/types issue пре 4 година

README.md

query-node

The query-node project contains an input schema (schema.graphql) and mappings for the Joystream content-directory runtime module.

Code generation

We use Hydra-cli to generate a graphql server and a block indexer for joystream chain:

$ cd query-node
$ yarn build

Starting services

To start services defined in the project docker-compose.yml, you should run docker-compose from the project root folder to use the correct .env file

Run mapping processor

Before running mappings make sure indexer(yarn indexer:start) and indexer-api-server (mappings get the chain data from this graphql server) are both running:

yarn processor:start

Query data

Once processor start to store event data you will be able to query this data from http://localhost:4002/graphql.

query {
  channels {
    handle
  }
}