Skip to content

Commit 78d17c2

Browse files
committed
Elaborate the descriptions
1 parent d0b14d1 commit 78d17c2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/content/code/language-support/c-c/client/cppgraphqlgen-clientgen.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
name: cppgraphqlgen-clientgen
3-
description: A C++20 GraphQL client request generator and response parser using the schema document.
3+
description: A C++20 GraphQL request client generator and response parser using the schema document. If you want to consume a GraphQL service from a C++ client, you can pre-compile queries and deserialization functions for the expected results.
44
url: https://github.com/microsoft/cppgraphqlgen
55
github: microsoft/cppgraphqlgen
66
---

src/content/code/language-support/c-c/server/cppgraphqlgen-schemagen.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
---
22
name: cppgraphqlgen-schemagen
3-
description: A C++20 GraphQL service generator using the schema document.
3+
description: A C++20 GraphQL service generator using the schema document. You can use this to implement a GraphQL service with resolvers backed by whatever C++ libraries you need.
44
url: https://github.com/microsoft/cppgraphqlgen
55
github: microsoft/cppgraphqlgen
66
---
77

88
Run `schemagen -?` to get a list of options. Many of the files in the [samples](https://github.com/microsoft/cppgraphqlgen/tree/main/samples) directory were generated
9-
with `schemagen`, you can look at [samples/CMakeLists.txt](https://github.com/microsoft/cppgraphqlgen/blob/main/samples/CMakeLists.txt) for a few examples of how to call it:
9+
with `schemagen`, you can look at [samples/learn/schema/CMakeLists.txt](https://github.com/microsoft/cppgraphqlgen/blob/main/samples/learn/schema/CMakeLists.txt) for an example of how to call it with the canonical Star Wars sample [schema](https://github.com/microsoft/cppgraphqlgen/blob/main/samples/learn/schema/schema.learn.graphql):
1010
```
1111
Usage: schemagen [options] <schema file> <output filename prefix> <output namespace>
1212
Command line options:

0 commit comments

Comments
 (0)