Expand description
GraphQL schema parsing and generation
Structs§
- GraphQL
Schema - GraphQL schema manager
- Mutation
Root - Root mutation type. A single
createUsermutation lets clients exercise the mutation dispatch path against the default schema without registering a custom SDL. The mutation is stateless — the “created” user is fabricated from the inputs plus a deterministic id derived from (name, email), so callers can assert on the shape of the return value without mocking storage. - Post
- Simple Post type for GraphQL
- Query
Root - Root query type
- Subscription
Root - Root subscription type. A single
ticksubscription lets clients exercise the subscription dispatch path (WebSocket viagraphql-transport-ws/graphql-ws, SSE, etc.) against the default schema without registering a custom SDL. - User
- Simple User type for GraphQL