metmirr 5c9f59c8f0 query-node: enable hydra-typegen il y a 3 ans
..
bootstrap 7886c8d5bd Upgrade apps to @polkadot/api 4.2.1 (unfinished) il y a 4 ans
mappings 5c9f59c8f0 query-node: enable hydra-typegen il y a 3 ans
scripts e91aac1b8b query-node: update mappings for new processor il y a 4 ans
.gitignore 76916dfdd6 query-node: do not check in generated code il y a 4 ans
README.md fe235ebd3f query-node: configure with two separate databases il y a 4 ans
build.sh 5c9f59c8f0 query-node: enable hydra-typegen il y a 3 ans
db-migrate.sh 64f2a44010 query-node: env cleanup il y a 4 ans
manifest.yml 5c9f59c8f0 query-node: enable hydra-typegen il y a 3 ans
package.json 5c9f59c8f0 query-node: enable hydra-typegen il y a 3 ans
processor-start.sh 63b9d1484e query-node: update bash scripts il y a 4 ans
run-tests.sh bd06e736f7 query-node: remove db seeding from run-tests.sh il y a 4 ans
schema.graphql 874999c584 query-node: add default schema to all newly created entities il y a 4 ans
tsconfig.json 94e8fb7ae8 Query node - fix @joystream/types issue il y a 4 ans

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
  }
}