ariadne icon indicating copy to clipboard operation
ariadne copied to clipboard

Python library for implementing GraphQL servers using schema-first approach.

Results 78 ariadne issues
Sort by recently updated
recently updated
newest added

I was facing an issue using and defining an interface in GraphQL when used together with Pydantic. The solution I finally managed to wotk with will not scale very well...

discussion

This PR introduces a first implementation of subscriptions over Server-Sent Events (SSE) based on the definition in [graphql-sse](https://github.com/enisdenjo/graphql-sse/blob/master/PROTOCOL.md). This provides an alternative to the existing WebSocket support, which is particularly...

### Discussed in https://github.com/mirumee/ariadne/discussions/1193 Originally posted by **steve-marmalade** August 21, 2024 It looks like the community has landed on a solution for describing a "union of inputs" in a GraphQL...

if you have a field fooBar19 then setting convert_names_case to True will convert that to foo_bar_19. Awesome But if the name is foobar19 then it doesn't get converted. Not awesome....

Hello, I'm extending our application to be integrated in GraphQL federation and I encountered a weird bug. We are heavily utilizing directives in our schema, to extend resolving logic of...

This PR updates the regex used for purging directives from the sdl to include directives containing the `repeatable` tag. Fixes #1188

When I search google it brings me to the Subscription documents but they don't discuss these two directives. Is it not possible with this library? Or is there an alternative...

The linters were failing for PR #1197 for files unrelated to the change. This PR fixes those styles.