Skip to main content

PlayerOffers

A page of the offers a player has engaged with.

type PlayerOffers {
offers: [PlayerOffer]!
next_cursor: String
has_more: Boolean!
}

Fields

PlayerOffers.offers ● [PlayerOffer]! non-null object

The offers in this page, most recently engaged first.

PlayerOffers.next_cursor ● String scalar

Pass this back as after to fetch the next page. Null when no further page exists.

Example: "eyJ0IjoiMjAyNi0wOC0xNFQwOToxMjo0NFoiLCJpIjoiMTIzIn0"

PlayerOffers.has_more ● Boolean! non-null scalar

Whether a further page exists. Prefer this over checking the length of offers, since a full page and the final page are otherwise indistinguishable.

Example: false

Returned By

playerOffers query