File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ app and your native/hybrid app.
26
26
## Related projects
27
27
28
28
I created a couple of sample projects that work with the latest version to demonstrate integrating the
29
- [ schema.today.graphql] ( ./samples/today/ schema.today.graphql ) service into an Electron app. They're available under
29
+ [ schema.today.graphql] ( ./samples/schema.today.graphql ) service into an Electron app. They're available under
30
30
my personal account, feel free to use either or both of these as a starting point to integrate your own generated
31
31
service with Node or Electron. PRs with links to your own samples are always welcome.
32
32
@@ -126,9 +126,9 @@ configuration.
126
126
## API references
127
127
128
128
See [ GraphQLService.h] ( include/graphqlservice/GraphQLService.h ) for the base types implemented in
129
- the ` graphql::service ` namespace. Take a look at [ UnifiedToday .h] ( samples/today/UnifiedToday .h ) and
130
- [ UnifiedToday .cpp] ( samples/today/UnifiedToday .cpp ) to see a sample implementation of a custom schema defined
131
- in [ schema.today.graphql] ( samples/today/ schema.today.graphql ) for testing purposes.
129
+ the ` graphql::service ` namespace. Take a look at [ TodayMock .h] ( samples/today/TodayMock .h ) and
130
+ [ TodayMock .cpp] ( samples/today/TodayMock .cpp ) to see a sample implementation of a custom schema defined
131
+ in [ schema.today.graphql] ( samples/schema.today.graphql ) for testing purposes.
132
132
133
133
### Additional Documentation
134
134
Original file line number Diff line number Diff line change @@ -90,7 +90,7 @@ throw std::runtime_error(R"ex(Appointment::getId is not implemented)ex");
90
90
```
91
91
92
92
Although the `id field` does not take any arguments according to the sample
93
- [schema](../samples/today/ schema.today.graphql), this example also shows how
93
+ [schema](../samples/schema.today.graphql), this example also shows how
94
94
every `getField` method takes a `graphql::service::FieldParams` struct as
95
95
its first parameter. There are more details on this in the [fieldparams.md](./fieldparams.md)
96
96
document.
You can’t perform that action at this time.
0 commit comments