Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
2e9978c
Add graphQL API related DB schema changes
Aug 25, 2026
3de3c3d
Update OpenAPI specs for GraphQL API management and regenerate server…
Aug 25, 2026
9f348db
Add gateway-first GraphQL API support to gateway-controller
Aug 25, 2026
e5ffa94
Add ap CLI support for GraphQL API management
Aug 25, 2026
8efe64b
Add GraphQL API key management to gateway-controller
Aug 25, 2026
de47671
Add control-plane support for GraphQL API management
Aug 25, 2026
f9723f2
Remove GraphQL lifecycleStatus and harden GraphQL API support
Aug 28, 2026
1245e7b
Split GraphQL API sdl out of the GET-by-id response
Aug 28, 2026
358c7b3
Suggest a /graphql suffix convention for GraphQL API context paths
Aug 28, 2026
1b22a51
Fix go-httpkit import path in new GraphQL files after upstream rename
Aug 28, 2026
73d9ee5
Add GraphQL API deploy support to event-gateway-controller
Aug 28, 2026
3731c2d
Redact upstream auth credentials in GraphQL API responses
Aug 28, 2026
05c8096
Wire up CP<->DP GraphQL API deployment: sync, live events, artifact p…
Aug 31, 2026
d953b80
Wire up upstream.ref rejection
Aug 31, 2026
40d2e3f
Document GraphQL cors preflight limitation in both OpenAPI specs
Aug 31, 2026
9408734
gofmt: fix struct field/tag alignment and trailing blank line
Aug 31, 2026
d91e967
Fix comment citing a nonexistent CLI constant for the SDL upload limit
Aug 31, 2026
b8dd473
Stop aliasing one PolicyChain pointer across GraphQL's main and sandb…
Aug 31, 2026
10efda5
Fix comment overstating that /graphql-apis routes are authorized here
Aug 31, 2026
f8eb903
Honor sortBy/sortOrder/query on GET /graphql-apis instead of ignoring…
Aug 31, 2026
1fdf515
Regenerate third-party Go license report to cover gqlparser
Aug 31, 2026
3a0cea9
Fix review comments
Aug 31, 2026
5ca4775
Fix build issue
Aug 31, 2026
9a9d8de
Set OperationPath on GraphQLApi routes so api-key-auth doesn't fail-c…
Sep 2, 2026
bf2f885
Include GraphQLApi in the connected-gateway API key bulk sync
Sep 2, 2026
ede571c
Stop deleting locally-generated API keys during CP bulk-sync reconcil…
Sep 2, 2026
886083f
Fix sandbox-upstream path corruption from GraphQLApi's synthetic Oper…
Sep 2, 2026
c7cba7e
Require multipart for GraphQL API create/update, add schemaSource, ma…
Sep 3, 2026
47c5542
Replace CR-file input with flags for graphql-api api-key create
Sep 3, 2026
aff1111
Improve api key error handling
Sep 4, 2026
867ed8b
Fix host port collision between mock-oauth2-idp and mock-graphql-backend
Sep 7, 2026
a163667
Add a SDL validation endpoint
Sep 7, 2026
16ae7b1
Add GraphQLApi to UserAPIKey artifactType enum
Sep 11, 2026
9f299af
Fix GraphQL API key create for the current CreateAPIKey signature
Sep 17, 2026
9db4b76
Fix GraphQL deploy base contract, schema-preserve, and zip-bomb gap f…
Sep 17, 2026
194b86e
Add missing ap:graphql_api:* scopes to AI Workspace BFF default OIDC …
Sep 17, 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