Trio
Aim of the Bet¶
To select the winner, the second and the third horse in any order.
Rules¶
How to bet¶
Example of placing a 50p single line Trio bet.
mutation PlaceTrioBet {
placeBets(
input: {
ticketId: "ticket-9a4416c8-4480-4736-8bbe-64639f410a1b"
bets: [
{
betId: "bet-trio-9a4416c8-4480-4736-8bbe-64639f410a1b"
productId: "2efde98a-3223-477f-8183-f78c5c4fdbce"
stake: { currencyCode: GBP, totalAmount: 0.50 }
legs: [
{
productLegId: "210583c0-0528-4a90-a634-82b758c802fd"
selections: [
{ productLegSelectionID: "5e3189eb-9e17-464e-a721-bc7b2384346f" }
{ productLegSelectionID: "d26b42db-d5c5-4abc-b1dd-4433e4f9cdec" }
{ productLegSelectionID: "ea2ac134-fef7-4728-9dff-e47e2acf5724" }
]
}
]
}
]
}
) {
ticket {
id
toteId
bets {
nodes {
id
toteId
placement {
status
}
}
}
}
}
}
{
"data": {
"placeBets": {
"ticket": {
"id": "ticket-9a4416c8-4480-4736-8bbe-64639f410a1b",
"toteId": "1b3bfa3b-cf86-4884-90fc-597a64650cf9",
"bets": {
"nodes": [
{
"id": "bet-trio-9a4416c8-4480-4736-8bbe-64639f410a1b",
"toteId": "fe8b8fdad3e04e78a17250a62d301370",
"placement": {
"status": "ACCEPTED"
}
}
]
}
}
}
}
}