File tree Expand file tree Collapse file tree 1 file changed +23
-0
lines changed
src/content/code/language-support/c-net/client Expand file tree Collapse file tree 1 file changed +23
-0
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ name : Strawberry Shake
3
+ description : Strawberry Shake is a open-source reactive GraphQL client for .NET
4
+ url : https://chillicream.com/docs/strawberryshake/
5
+ github : ChilliCream/hotchocolate
6
+ ---
7
+
8
+ Strawberry Shake removes the complexity of state management and lets you interact with local and remote data through GraphQL.
9
+
10
+ You can use Strawberry Shake to:
11
+
12
+ - Generate a C# client from your GraphQL queries.
13
+ - Interact with local and remote data through GraphQL.
14
+ - Use reactive APIs to interact with your state.
15
+
16
+ ``` csharp
17
+ client .GetHero
18
+ .Watch (ExecutionStrategy .CacheFirst )
19
+ .Subscribe (result =>
20
+ {
21
+ Console .WriteLine (result .Data .Name );
22
+ })
23
+ ```
You can’t perform that action at this time.
0 commit comments