Skip to content

Double

Aim of the Bet

To select the winning horse in each of 2 specific races at the same meeting as nominated by Tote.

Rules

Betting Rules

How to bet

Example of placing a 50p single line Double Bet.

mutation {
  mutation PlaceDoubleBet {
    placeBets(
      input: {
        ticketId: "ticket-419f3f1d-08bd-4fb9-a4ee-09704bf1d15e"
        bets: [
          {
            betId: "bet-double-419f3f1d-08bd-4fb9-a4ee-09704bf1d15e"
            productId: "80abfc18-090c-41a0-b1d2-4f2fc7a267a3"
            stake: { currencyCode: GBP, totalAmount: 0.50 }
            legs: [
              {
                productLegId: "43455-f228-45a3-ab3d-0a429940be9e"
                selections: [{ productLegSelectionID: "112e57e1-f228-45a3-ab3d-0a429940be9e" }]
              }
              {
                productLegId: "312e57e1-f228-45a3-ab3d-03449940be9e"
                selections: [{ productLegSelectionID: "f9afcb8f-56f3-4848-9b05-447aed22edb1" }]
              }
            ]
          }
        ]
      }
    ) {
      ticket {
        id
        toteId
        bets {
          nodes {
            id
            toteId
            placement {
              status
            }
          }
        }
      }
    }
  }
Response
{
  "data": {
    "placeBets": {
      "ticketId": "684ce2c2-2ebc-4865-8e61-8b73a10d98be",
      "bets": [
        {
          "betId": "994589270dce48edb06e01d96d28d17d"
        }
      ]
    }
  }
}