[t-010] Create GraphQL Query.page resolver + integrate with app_data #10
Loading…
Add table
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Goal
Add
Query.page(id: ID!, sessionId: ID)to the GraphQL schema and wire it into the app_data HTTP endpoint.References
Reference
Implementation Steps
Implementation Steps
1. Update
src/models/graphql.pyAdd Query.page resolver:
2. Update
src/routes/app_data.pyto also expose GraphQL page query via /graphql endpointThe GraphQL mount already handles this — no additional route code needed.
Verification Gate
Verification Gate
Run:
STOP Conditions
STOP Conditions
Depends on: t-009