Skip to content

Tags: antoncoding/graph-node

Tags

hosted-current

Toggle hosted-current's commit message
build(deps): bump tokio-stream from 0.1.3 to 0.1.5

Bumps [tokio-stream](https://github.com/tokio-rs/tokio) from 0.1.3 to 0.1.5.
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](tokio-rs/tokio@tokio-stream-0.1.3...tokio-stream-0.1.5)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

integer

Toggle integer's commit message
store: Do not crash the node on invalid StoreEvent

It is possible to receive invalid store events when a node is starting up
because Postgres still has events sent by a previous version of the
code. In that case, the best we can do is ignore these events.

Once we've seen enough valid events, go back to panicing on invalid events.

fraction

Toggle fraction's commit message
store: Remove metadata printers from layout helper

Some of the printers in the layout helper were only there to generate
queries for metadata. That's not necessary anymore, and the metadata schema
is no longer compatible with how we generate DDL from GraphQL schemas

v0.20.0

Toggle v0.20.0's commit message
graphql: Add `subgraphError` argument only when feature is present

We saw an issue in a graphql client that is avoided by doing this.
and it is generally more correct to only include it if the subgraph opts in.
This requires storing the `features` field in the metadata, which we should be doing anyways.