Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support subscription operations #649

Merged
merged 3 commits into from
Feb 5, 2024

Conversation

oojacoboo
Copy link
Collaborator

Currently, GraphQLite doesn't support subscription operations at all. However, basic support for the GQL syntax is supported in webonyx. This PR provides basic support for subscriptions.

By design, this subscription implementation is basic. After much research and discussion, it's apparent that subscriptions will need to be implemented in a large variety of ways. This implementation is non-opinionated, only replicating the same implementation style as queries and mutations.

What it does, is allow the subscription GQL syntax, routing to the new #[Subscription] annotated controller method. The behavior will be the same as a mutation or query - no difference there.

Future improvements could be made to this to support long-running PHP processes. I'm thinking the controller method could return a generator/fiber.

@oprypkhantc
Copy link
Contributor

Cool, good seeing some work done in that direction :)

@oojacoboo oojacoboo merged commit b63eaec into thecodingmachine:master Feb 5, 2024
6 checks passed
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.

2 participants