Offset not working?

I have a pdoResources code below

[[!pdoResources? 
  &parents=`10` 
  &tpl=`upcomingGameDetails`
  &includeContent=`1`
  &processTVs=`1`
  &includeTVs=`Team_1_Name,
    Team_1_Score,
    Team_1_Crest,
    Team_2_Name,
    Team_2_Score,
    Team_2_Crest,
    Game_Competition,
    Game_Date,
    Game_Venue`
  &limit=`0`
  &offset=`1`
  &sortby=`{"Game_Date":"ASC"}` 
  &sortdir=`DESC`
  &where=`{"isfolder:=":"0","template:=":"15","Game_Date:>":"[[!currentDate]]"}`
]]

This should retrieve a table of all the upcoming game except the first one - &offset=1 but it keeps bringing them all back. I don’t want to show the next game as the next game is larger above the table.

Offset needs a limit, use something like &limit=`9999` .

Thanks a million Mark

This topic was automatically closed 2 days after discussion ended and a solution was marked. New replies are no longer allowed. You can open a new topic by clicking the link icon below the original post or solution and selecting “+ New Topic”.