Querydeck Docs
  • 👋Welcome to Query Deck
  • Getting Started
    • 😃Get Started With QueryDeck
      • Quickstart With QueryDeck
    • How It Works?
  • REST
    • Select Method
      • Joins
      • Sorting
        • Ascending/ Descending ordering
        • Dynamic Sorting
      • Filter
        • Dynamic Filtering
        • Groups
        • Exists clause
      • Pagination
        • Offset
        • Limit
    • Insert/Upsert Method
      • Nested Inserts (Joins)
      • Conflicting Columns
    • Update Method
      • Filters
    • Delete Method
    • Authentication
    • Authorization
    • Select by Id
  • GraphQL
    • Introduction to GraphQL in QueryDeck
    • Enabling GraphQL for Columns in QueryDeck
  • Testing Endpoints
Powered by GitBook
On this page
  1. REST
  2. Select Method
  3. Pagination

Offset

PreviousPaginationNextLimit

Last updated 5 months ago

Definition

The offset parameter defines how many rows to skip before starting to retrieve data.

Adding Offset Parameters

From the left side pane choose the offset input box

Enter the desired number of rows you wish to skip (from the start)

Now we copy the endpoint URL on the top right corner

Save the endpoint

Testing the endpoint

Goto postman, choose the GET method, and then paste the URL

Hit send to send the request

Now you should get a response which skips the "offset" number of rows specified earlier (here it skips the first 3 rows)