docs(connect): add client documentation and operations mode #201
+395
−16
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.
Rendered Mermaids:
sequenceDiagram autonumber participant Provider as API Provider participant CLI as Cosmo CLI (wgc) participant Consumer as API Consumer participant Client as Client SDK participant Router as Cosmo Router participant Graph as Federated Graph Note over Provider, Router: Setup & Configuration Provider->>Provider: Define GraphQL Operations (.graphql) Provider->>CLI: Generate Protobuf (wgc grpc-service generate) CLI->>Provider: service.proto + lock file Provider->>Router: Configure & Start Router with operations Note over Provider, Consumer: Distribution Provider->>Consumer: Distribute service.proto / OpenAPI spec Note over Consumer, Client: Client Development Consumer->>Consumer: Generate Client SDK (buf/protoc) Consumer->>Client: Integrate SDK into App Note over Client, Graph: Runtime Client->>Router: Send RPC Request (Connect/gRPC) Router->>Graph: Execute GraphQL Operation Graph-->>Router: GraphQL Response Router-->>Client: Protobuf Response Note over Provider, Router: Observe Router->>Provider: OTEL Metrics / Traces (GraphQL & RPC)