Skip to content

Commit 7b5fd8a

Browse files
committed
Fix broken links in docs from when I updated the directory structure
1 parent 8276306 commit 7b5fd8a

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ app and your native/hybrid app.
2626
## Related projects
2727

2828
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
3030
my personal account, feel free to use either or both of these as a starting point to integrate your own generated
3131
service with Node or Electron. PRs with links to your own samples are always welcome.
3232

@@ -126,9 +126,9 @@ configuration.
126126
## API references
127127

128128
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.
132132

133133
### Additional Documentation
134134

doc/resolvers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ throw std::runtime_error(R"ex(Appointment::getId is not implemented)ex");
9090
```
9191
9292
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
9494
every `getField` method takes a `graphql::service::FieldParams` struct as
9595
its first parameter. There are more details on this in the [fieldparams.md](./fieldparams.md)
9696
document.

0 commit comments

Comments
 (0)