Conversation
Update graphql-core requirement
Upgrade&fix Graphiql and sqlalchemy examples
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
…-schema [DOD 901] Add sort schema
Add offset() method to _SqlQuery for skip-based pagination. The offset is preserved through query chaining (where, order_by, limit, group_by, index_by) and works with joins. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
[DT-2731] Enables pagination support
Bump version from 0.3.0 to 0.4.0
…, fields, params and input fields Threads an optional description= kwarg through the graph-side schema builders (ObjectType, InterfaceType, InputObjectType, field, param, input_field) and propagates it into the generated GraphQLObjectType / GraphQLInterfaceType / GraphQLInputObjectType / GraphQLField / GraphQLArgument / GraphQLInputField, so descriptions show up in introspection and GraphiQL. Bump version to 0.5.0. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Author
|
Opened against the wrong repo by mistake (meant to target our internal fork, not upstream) — closing. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
description=kwarg toObjectType,InterfaceType,InputObjectType,field(),param(), andinput_field()GraphQLObjectType/GraphQLInterfaceType/GraphQLInputObjectType/GraphQLField/GraphQLArgument/GraphQLInputFieldincreate_graphql_schema, so they surface in introspection and GraphiQLNeeded by the knowledge-base app, which wants to start documenting its GraphQL schema (starting with the top-level
diseasesquery) but currently has nowhere to attach a description — graphlayer drops it silently today.Test plan
pytest tests/— 276 passed (270 existing + 6 new covering description propagation for object/interface/input-object types, fields, params, and input fields)