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 74667f2 commit 24d665cCopy full SHA for 24d665c
src/content/code/language-support/c-net/client/zeroql.md
@@ -13,7 +13,15 @@ You can use ZeroQL to:
13
- Generate a C# client from GraphQL schema.
14
- Generate and execute graphql queries from your C# code.
15
- Don't require writing GraphQL manually.
16
+- Supports .Net Core, .Net Framework, Xamarin, Unity apps.
17
18
```csharp
-var response = await client.Query(o => o.Me(o => new { o.Id, o.FirstName, o.LastName }));
19
+var userId = 10;
20
+var response = await qlClient.Query(q => q
21
+ .User(userId, o => new
22
+ {
23
+ o.Id,
24
+ o.FirstName,
25
+ o.LastName
26
+ }));
27
```
0 commit comments