Skip to content

Commit

Permalink
docs(graphql-reference): add skip parameter (#8450)
Browse files Browse the repository at this point in the history
Add skip parameter to graphql-reference
  • Loading branch information
NickyMeuleman authored and calcsam committed Sep 23, 2018
1 parent 825947c commit 6375643
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions docs/docs/graphql-reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,12 @@ There are several ways to reduce the number of results from a query. Here `total

<iframe src="https://gatsbygraphql.sloppy.zone/?query=%7B%0A%20%20allMarkdownRemark(%0A%20%20%20%20limit%3A%202%0A%20%20)%20%7B%0A%20%20%20%20totalCount%0A%20%20%20%20edges%20%7B%0A%20%20%20%20%20%20node%20%7B%0A%20%20%20%20%20%20%20%20frontmatter%20%7B%0A%20%20%20%20%20%20%20%20%20%20title%0A%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%20%20%7D%0A%7D%0A" width="600" height="400"></iframe>

## Skip

Skip over a number of results. In this query `skip` is used to omit the first 3 results.

<iframe src="https://gatsbygraphql.sloppy.zone/?query=%7B%0A%20%20allMarkdownRemark(skip%3A%203)%20%7B%0A%20%20%20%20edges%20%7B%0A%20%20%20%20%20%20node%20%7B%0A%20%20%20%20%20%20%20%20id%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%20%20%7D%0A%7D%0A" width="600" height="400"></iframe>

## Filter

In this query `filter` and the `ne` (not equals) operator is used to show only results that have a title.
Expand Down

0 comments on commit 6375643

Please sign in to comment.