Skip to content

Commit

Permalink
Comment out custom edges
Browse files Browse the repository at this point in the history
  • Loading branch information
tobias-tengler committed May 3, 2021
1 parent 9d53434 commit 852ebe2
Showing 1 changed file with 8 additions and 10 deletions.
18 changes: 8 additions & 10 deletions website/src/docs/hotchocolate/fetching-data/pagination.md
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ descriptor.UsePaging(options: new PagingOptions
</ExampleTabs.Code>
<ExampleTabs.Schema>

TODO
⚠️ Schema-first does currently not support pagination!

</ExampleTabs.Schema>
</ExampleTabs>
Expand Down Expand Up @@ -256,7 +256,7 @@ If we need to work on an even lower level, we could also use `descriptor.AddPagi
</ExampleTabs.Code>
<ExampleTabs.Schema>

TODO
⚠️ Schema-first does currently not support pagination!

</ExampleTabs.Schema>
</ExampleTabs>
Expand Down Expand Up @@ -287,7 +287,7 @@ descriptor.UsePaging(options: new PagingOptions
</ExampleTabs.Code>
<ExampleTabs.Schema>

TODO
⚠️ Schema-first does currently not support pagination!

</ExampleTabs.Schema>
</ExampleTabs>
Expand All @@ -314,7 +314,7 @@ var connection = new Connection<User>(
getTotalCount: cancellationToken => ValueTask.FromResult(0));
```

## Custom Edges
<!-- ## Custom Edges
_Edges_ are not only there to hold the _cusor_, they can also be used to include information about the relation between the parent and one of the _nodes_.
Expand Down Expand Up @@ -344,9 +344,7 @@ type PageInfo {
startCursor: String
endCursor: String
}
```

TODO: Code Example
``` -->

# Offset Pagination

Expand Down Expand Up @@ -429,7 +427,7 @@ descriptor.UseOffsetPaging(options: new PagingOptions
</ExampleTabs.Code>
<ExampleTabs.Schema>

TODO
⚠️ Schema-first does currently not support pagination!

</ExampleTabs.Schema>
</ExampleTabs>
Expand Down Expand Up @@ -503,7 +501,7 @@ If we need to work on an even lower level, we could also use `descriptor.AddOffs
</ExampleTabs.Code>
<ExampleTabs.Schema>

TODO
⚠️ Schema-first does currently not support pagination!

</ExampleTabs.Schema>
</ExampleTabs>
Expand Down Expand Up @@ -534,7 +532,7 @@ descriptor.UseOffsetPaging(options: new PagingOptions
</ExampleTabs.Code>
<ExampleTabs.Schema>

TODO
⚠️ Schema-first does currently not support pagination!

</ExampleTabs.Schema>
</ExampleTabs>
Expand Down

0 comments on commit 852ebe2

Please sign in to comment.