Show
Aim of the Bet¶
To select a horse to finish in first, second or third regardless of the number of runners.
Rules¶
How to bet¶
Example of placing a 50p Show bet.
mutation PlaceShowBet {
placeBets(
input: {
ticketId: "ticket-238d089f-9e44-4584-8bc0-aba9539fd094"
bets: [
{
betId: "bet-show-238d089f-9e44-4584-8bc0-aba9539fd094"
productId: "b0336736-42d6-441f-9ff5-a98c0de27423"
stake: { currencyCode: GBP totalAmount: 0.50 }
legs: [
{
productLegId: "e82d8e4f-4981-4ce1-af9d-7acc630036af"
selections: [{ productLegSelectionID: "e915d851-b13f-46b3-b819-e906998d6726" }]
}
]
}
]
}
) {
ticket {
id
toteId
bets {
nodes {
id
toteId
placement {
status
}
}
}
}
}
}
{
"data": {
"placeBets": {
"ticket": {
"id": "ticket-238d089f-9e44-4584-8bc0-aba9539fd094",
"toteId": "9d6cc87c-ed3e-43ff-a25a-2863c449a5f2",
"bets": {
"nodes": [
{
"id": "bet-show-238d089f-9e44-4584-8bc0-aba9539fd094",
"toteId": "07f81eda36514f199b9e7b1184617cca",
"placement": {
"status": "ACCEPTED"
}
}
]
}
}
}
}
}