Skip to content

Commit

Permalink
Trying a thing for more details
Browse files Browse the repository at this point in the history
  • Loading branch information
cpluta committed Sep 20, 2019
1 parent 2910893 commit 0c35b19
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
7 changes: 5 additions & 2 deletions docs/data/projecting.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,10 @@ Retrieve data from a defined projection.
var client = MeshyClient.Initialize(accountName, publicKey);
var connection = await client.LoginAnonymouslyAsync(username);
var person = await connection.Projections.Get<ProjectionTest>(projectionName, orderBy, page, pageSize);
var person = await connection.Projections.Get<ProjectionTest>(projectionName,
orderBy,
page,
pageSize);
|parameters|

Expand All @@ -43,7 +46,7 @@ Retrieve data from a defined projection.
projectionName : :type:`string`, :required:`required`
Identifies name of mesh collection. e.g. person.
orderBy : :type:`object`
Defines which fields need to be ordered and direction.
Defines which fields need to be ordered and direction. Review more ways to use `ordering <../details/orderby.html>`_.
page : :type:`integer`, default: 1
Page number of results to bring back.
pageSize : :type:`integer`, max: 200, default: 25
Expand Down
7 changes: 7 additions & 0 deletions docs/details/orderby.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
--------
Order By
--------

Ordering is a thing that can be either Mongo or other stuff.

How about this now?

0 comments on commit 0c35b19

Please sign in to comment.