Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
da6a112
Add graphQL API related DB schema changes
Aug 25, 2026
0341397
Update OpenAPI specs for GraphQL API management and regenerate server…
Aug 25, 2026
e7e213d
Add gateway-first GraphQL API support to gateway-controller
Aug 25, 2026
b4c9172
Add ap CLI support for GraphQL API management
Aug 25, 2026
33bc281
Add GraphQL API key management to gateway-controller
Aug 25, 2026
06c1014
Add control-plane support for GraphQL API management
Aug 25, 2026
405507a
Remove GraphQL lifecycleStatus and harden GraphQL API support
Aug 28, 2026
b641fcf
Split GraphQL API sdl out of the GET-by-id response
Aug 28, 2026
1cae920
Suggest a /graphql suffix convention for GraphQL API context paths
Aug 28, 2026
0f88f72
Fix go-httpkit import path in new GraphQL files after upstream rename
Aug 28, 2026
974e0ee
Add GraphQL API deploy support to event-gateway-controller
Aug 28, 2026
53757e1
Redact upstream auth credentials in GraphQL API responses
Aug 28, 2026
a3463c1
Wire up CP<->DP GraphQL API deployment: sync, live events, artifact p…
Aug 31, 2026
123c3c1
Wire up upstream.ref rejection
Aug 31, 2026
83d5390
Document GraphQL cors preflight limitation in both OpenAPI specs
Aug 31, 2026
0df3046
gofmt: fix struct field/tag alignment and trailing blank line
Aug 31, 2026
88654af
Fix comment citing a nonexistent CLI constant for the SDL upload limit
Aug 31, 2026
451f3db
Stop aliasing one PolicyChain pointer across GraphQL's main and sandb…
Aug 31, 2026
983486e
Fix comment overstating that /graphql-apis routes are authorized here
Aug 31, 2026
74b9c05
Honor sortBy/sortOrder/query on GET /graphql-apis instead of ignoring…
Aug 31, 2026
57e8480
Regenerate third-party Go license report to cover gqlparser
Aug 31, 2026
ccc2794
Fix review comments
Aug 31, 2026
71e0701
Fix build issue
Aug 31, 2026
4d7bc35
Set OperationPath on GraphQLApi routes so api-key-auth doesn't fail-c…
Sep 2, 2026
a7e7f06
Include GraphQLApi in the connected-gateway API key bulk sync
Sep 2, 2026
a6196b9
Stop deleting locally-generated API keys during CP bulk-sync reconcil…
Sep 2, 2026
d7cf892
Fix sandbox-upstream path corruption from GraphQLApi's synthetic Oper…
Sep 2, 2026
8a3748c
Require multipart for GraphQL API create/update, add schemaSource, ma…
Sep 3, 2026
64b29ce
Replace CR-file input with flags for graphql-api api-key create
Sep 3, 2026
418f518
Improve api key error handling
Sep 4, 2026
6df192c
Fix host port collision between mock-oauth2-idp and mock-graphql-backend
Sep 7, 2026
a77daf1
Add a SDL validation endpoint
Sep 7, 2026
0dd7b98
Add GraphQLApi to UserAPIKey artifactType enum
Sep 11, 2026
e8401d6
Fix GraphQL API key create for the current CreateAPIKey signature
Sep 17, 2026
a662a23
Fix GraphQL deploy base contract, schema-preserve, and zip-bomb gap f…
Sep 17, 2026
006f7a0
Add missing ap:graphql_api:* scopes to AI Workspace BFF default OIDC …
Sep 17, 2026
8480ad8
test: port GraphQL API integration tests to the v2 test framework
Sep 24, 2026
2aa92d8
test: register the new GraphQL template in TestCanonicalResourceTempl…
Sep 24, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cli/src/cmd/gateway/apply.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ var (
var applyCmd = &cobra.Command{
Use: ApplyCmdLiteral,
Short: "Apply a resource to the gateway",
Long: "Create or update a gateway resource (RestApi, Mcp, LlmProvider, LlmProxy) from a YAML or JSON file.",
Long: "Create or update a gateway resource (RestApi, Mcp, LlmProvider, LlmProxy, GraphQLApi) from a YAML or JSON file.",
Example: ApplyCmdExample,
Run: func(cmd *cobra.Command, args []string) {
if err := runApplyCommand(cmd); err != nil {
Expand Down
Loading
Loading