Modifiers are things that you can add to your query that don't get matched against and instead affect the results you get back. They can be dropped into a query anywhere. The three worth knowing are:
count
orderBy
page
So to get the second page of your blog homepage, you would use all three of these together:
Page works in conjunction with count. If you're not also using count, things won't work properly. If you specify a count of 10 and a page of 2, you'll get back the results numbered 11-20. Here is a typical example of grabbing the second page of a blog archive:
This is the most complicated modifier, but that isn't saying much. It simply allows you to choose which field you want to order your results by. The most common use of this is to get items that were published the most recently:
{'type':'page','orderBy':'-publishedAt'}
OrderBy takes a field as a value. If it has a '-' in front of it, it will order them in reverse. It will order things either numerically or alphabetically depending on what type the field is.
Count limits the number of results you get back. This is a nice thing to do so that you aren't getting EVERYTHING back. Here is a basic example of getting the five newest blog posts: