We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6908ac9 commit 6b6d961Copy full SHA for 6b6d961
src/content/code/language-support/c-net/client/strawberry-shake.md
@@ -0,0 +1,23 @@
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
+```
0 commit comments