Remove GraphQL API and standardize on REST API only#6
Open
devin-ai-integration[bot] wants to merge 1 commit intomasterfrom
Open
Remove GraphQL API and standardize on REST API only#6devin-ai-integration[bot] wants to merge 1 commit intomasterfrom
devin-ai-integration[bot] wants to merge 1 commit intomasterfrom
Conversation
- Remove entire GraphQL package (src/main/java/io/spring/graphql/) - Remove GraphQL schema file (src/main/resources/schema/schema.graphqls) - Remove Netflix DGS codegen plugin and GraphQL dependency from build.gradle - Remove /graphql and /graphiql endpoints from WebSecurityConfig.java - Update README.md to remove GraphQL references All REST API endpoints remain unchanged and functional. Co-Authored-By: sachet.agarwal@windsurf.com <sachet.agarwal@windsurf.com>
Author
Original prompt from sachet.agarwal |
Author
🤖 Devin AI EngineerI'll be helping with this pull request! Here's what you should know: ✅ I will automatically:
Note: I can only respond to comments from users who have write access to this repository. ⚙️ Control Options:
|
Owner
|
Can you also document the architectural changes into a word document |
Author
|
I've created a Word document documenting the architectural changes. The document covers:
I'll share the document with you directly. |
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
This PR removes GraphQL support from the application, standardizing on the REST API only. The changes include:
io.spring.graphqlpackage (12 Java files including datafetchers, mutations, and exception handlers)schema.graphqls)build.gradle/graphqland/graphiqlendpoint permissions from security configurationThe shared business logic layer (
io.spring.application,io.spring.core,io.spring.infrastructure) and REST controllers (io.spring.api) remain unchanged.Review & Testing Checklist for Human
curl http://localhost:8080/tagsandcurl http://localhost:8080/articlesgraphql-schema.pngimage file that's no longer referenced in READMENotes
All 68 existing tests pass. The compile and test steps completed successfully locally.
Link to Devin run: https://app.devin.ai/sessions/68f99d79a6bf48d295c968f2fe8a3308
Requested by: @SachetCognition