Treble
Aim of the Bet¶
To select the winning horse in each of 3 specific races at the same meeting as nominated by Tote.
Rules¶
How to bet¶
Example of placing a 50p single line Treble Bet.
mutation PlaceTrebleBet {
placeBets(
input: {
ticketId: "ticket-44bc5be5-f120-4ac6-8fc0-7aee19463a99"
bets: [
{
betId: "bet-treble-44bc5be5-f120-4ac6-8fc0-7aee19463a99"
productId: "31a4396f-1abf-44a1-b3ae-8efb4a8e8ea9"
stake: { currencyCode: GBP, totalAmount: 0.50 }
legs: [
{
productLegId: "58b0b824-17d3-40e9-a54f-47dd7b4683cd"
selections: [{ productLegSelectionID: "f6cc55ec-3907-4b5a-b1a4-be78e9c4a5d8" }]
}
{
productLegId: "82b2468d-f220-4ab3-af46-72886f6c9d52"
selections: [{ productLegSelectionID: "f9ebf219-4121-438c-a1eb-9e8903440fd8" }]
}
{
productLegId: "248f7658-9215-4b89-8cba-df5ff039b416"
selections: [{ productLegSelectionID: "aed0dddb-538c-4b1c-be29-6194a54c7cb1" }]
}
]
}
]
}
) {
ticket {
id
toteId
bets {
nodes {
id
toteId
placement {
status
}
}
}
}
}
}
{
"data": {
"placeBets": {
"ticket": {
"id": "ticket-44bc5be5-f120-4ac6-8fc0-7aee19463a99",
"toteId": "ac8776b6-c08a-4f15-b8f9-d79ef30baa1b",
"bets": {
"nodes": [
{
"id": "bet-treble-44bc5be5-f120-4ac6-8fc0-7aee19463a99",
"toteId": "ac7ce5daecda4d1bbdcebccf2f2e208c",
"placement": {
"status": "ACCEPTED"
}
}
]
}
}
}
}
}