Skip to main content

Sets by Player

In this example, we will query for sets involving a specific player.

Example

query Sets {
player(id: 1000) {
id
sets(perPage: 5, page: 10) {
nodes {
id
displayScore
event {
id
name
tournament {
id
name
}
}
}
}
}
}