Skip to content

Commit f4f97de

Browse files
committed
More links
1 parent 2b5ad60 commit f4f97de

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

docs2/site/docs/getting-started/databases.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,5 @@ This library will work with any data source that you provide.
55
* [Entity Framework Blog Series](http://fiyazhasan.me/tag/graphql-dotnet/) by [Fiyaz Hasan](https://twitter.com/FiyazBinHasan)
66
* [Entity Framework](https://github.com/JacekKosciesza/StarWars) by [Jacek Kościesza](https://github.com/JacekKosciesza)
77
* [GraphQL.EntityFramework](https://github.com/SimonCropp/GraphQL.EntityFramework) Adds EntityFramework Core IQueryable support by [Simon Cropp](https://github.com/SimonCropp/)
8+
* [Dapper](https://github.com/landmarkhw/Dapper.GraphQL) by [Doug Day](https://github.com/dougrday)
89
* [Marten + Nancy](https://github.com/joemcbride/marten/blob/graphql2/src/DinnerParty/Modules/GraphQLModule.cs) by [Joe McBride](https://github.com/joemcbride)

docs2/site/docs/getting-started/metrics.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# Metrics
22

3-
Metrics are captured during execution. This can help you determine performance issues within a resolver or validation. Field metrics are captured using Field Middleware and the results are returned as a `PerfRecord` array on the `ExecutionResult`. You can then generate an Apollog Tracing request with the `EnrichWithApolloTracing()` extension method.
3+
Metrics are captured during execution. This can help you determine performance issues within a resolver or validation. Field metrics are captured using Field Middleware and the results are returned as a `PerfRecord` array on the `ExecutionResult`. You can then generate [Apollo Tracing](https://github.com/apollographql/apollo-tracing) data with the `EnrichWithApolloTracing()` extension method.
44

55
```csharp
66
var start = DateTime.UtcNow;
77

88
var executor = new DocumentExecutor();
9-
var result = executor.ExecuteAsync(_ =>
9+
ExecutionResult result = executor.ExecuteAsync(_ =>
1010
{
1111
_.Schema = schema;
1212
_.Query = "...";

0 commit comments

Comments
 (0)