Skip to content

Commit 6b6d961

Browse files
committed
Added Strawberry Shake GraphQL client for .NET
1 parent 6908ac9 commit 6b6d961

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)