-
Notifications
You must be signed in to change notification settings - Fork 28
docs(connect): add client documentation and operations mode #201
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
asoorm
wants to merge
8
commits into
main
Choose a base branch
from
ahmet/eng-8587-documentation-for-connect-client
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+872
−38
Conversation
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
600dc48 to
1a66bd9
Compare
1a66bd9 to
b1c8ab8
Compare
8c53730 to
e6b6c89
Compare
e6b6c89 to
df0bd8a
Compare
df0bd8a to
5a4eb1d
Compare
5a4eb1d to
bf2c4e9
Compare
bf2c4e9 to
dcf5b8d
Compare
dcf5b8d to
0bb4b8b
Compare
0bb4b8b to
a0bb740
Compare
a0bb740 to
feca56e
Compare
feca56e to
5758950
Compare
5758950 to
9e42716
Compare
9e42716 to
9c25f82
Compare
9c25f82 to
a51d11b
Compare
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.
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)