Skip to content

Add graph ql subscriptions for live prices#76

Open
mikkyvans0-source wants to merge 4 commits into
Miracle656:mainfrom
mikkyvans0-source:Add-GraphQL-subscriptions-for-live-prices
Open

Add graph ql subscriptions for live prices#76
mikkyvans0-source wants to merge 4 commits into
Miracle656:mainfrom
mikkyvans0-source:Add-GraphQL-subscriptions-for-live-prices

Conversation

@mikkyvans0-source
Copy link
Copy Markdown

Summary
Closes #56
Added a priceUpdated(pair: String!) GraphQL subscription that streams live prices over the existing Mercurius/Fastify /graphql endpoint — no separate WebSocket stack.

Changes
src/events.ts — Added a minimal PRICE_PUBLISHED event with a { pair, price, ts } payload and a publishPriceUpdate() helper. Kept the existing priceEmitter/PRICE_UPDATE intact so the REST /ws channel is untouched.

src/api/graphql.ts —

Added a PriceUpdate type and a Subscription.priceUpdated(pair) field.
Enabled Mercurius subscriptions with the graphql-transport-ws subprotocol (fullWsTransport: true) so standard graphql-ws clients connect.
Resolver uses withFilter to forward only the requested pair.
A single app-level bridge listener forwards priceEmitter events onto app.graphql.pubsub, detached on onClose so the listener doesn't leak.
src/ingesters/sdex.ts, amm.ts, soroswap.ts — Each ingester calls publishPriceUpdate({ pair, price, ts }) after recording a new price, alongside the existing webhook dispatch.

README.md — Documented the subscription with a graphql-ws client snippet showing subscribe and the unsubscribe (clean-close) call.

src/tests/graphqlSubscription.test.ts — Integration test over a real ws connection covering all three acceptance criteria: streaming for the subscribed pair, server-side filtering of other pairs, and clean unsubscribe via complete. Also asserts the bridge listener is detached on shutdown.

Verification
Tests: full suite passes — 85/85, including the 3 new subscription tests.
Typecheck: no new errors. The two webhookDispatcher.ts errors are pre-existing (Prisma client isn't generated locally) and unrelated — I confirmed they exist on the unmodified tree via git stash.

mikkyvans0-source and others added 4 commits June 2, 2026 12:03
Attach response schemas to every route in src/api/rest.ts (/status,
/price/:a/:b, /price/:a/:b/route, /price/:a/:b/history, /pools) and add
shared schema objects in src/api/schemas.ts.

In dev/test a validating serializer checks each outgoing payload against
its schema and throws on a mismatch, so accidental response-shape changes
fail loudly instead of shipping silently. Production keeps Fastify default
(fast) serialization for the same schemas, so there is no runtime impact.

Adds src/__tests__/schemaValidation.test.ts asserting a known endpoint
matches its schema and that extra/wrong-typed fields are rejected.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Attach response schemas to every route in src/api/rest.ts (/status,
/price/:a/:b, /price/:a/:b/route, /price/:a/:b/history, /pools) and add
shared schema objects in src/api/schemas.ts.

In dev/test a validating serializer checks each outgoing payload against
its schema and throws on a mismatch, so accidental response-shape changes
fail loudly instead of shipping silently. Production keeps Fastify default
(fast) serialization for the same schemas, so there is no runtime impact.

Adds src/__tests__/schemaValidation.test.ts asserting a known endpoint
matches its schema and that extra/wrong-typed fields are rejected.
@drips-wave
Copy link
Copy Markdown

drips-wave Bot commented Jun 2, 2026

@mikkyvans0-source Great news! 🎉 Based on an automated assessment of this PR, the linked Wave issue(s) no longer count against your application limits.

You can now already apply to more issues while waiting for a review of this PR. Keep up the great work! 🚀

Learn more about application limits

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Add GraphQL subscriptions for live prices

1 participant