Swinger
Aim of the Bet¶
To select 2 horses to finish in any of the first 3 places.
Rules¶
How to bet¶
Example of placing a 50p single line Swinger bet.
mutation PlaceSwingerBet {
placeBets(
input: {
ticketId: "ticket-62013aee-f357-48dc-97d9-8ad1c5ec766b"
bets: [
{
betId: "bet-swinger-62013aee-f357-48dc-97d9-8ad1c5ec766b"
productId: "57a7825e7-1c9d-470c-afb6-291fc785a2d8"
stake: { currencyCode: GBP, totalAmount: 0.50 }
legs: [
{
productLegId: "05b9219a-d5e0-406f-a9a8-8cf931f0bf11"
selections: [
{ productLegSelectionID: "112e57e1-f228-45a3-ab3d-0a429940be9e" }
{ productLegSelectionID: "bbfdffc3-abd6-49f9-8976-07470ca525b9" }
]
}
]
}
]
}
) {
ticket {
id
toteId
bets {
nodes {
id
toteId
placement {
status
}
}
}
}
}
}
{
"data": {
"placeBets": {
"ticket": {
"id": "ticket-62013aee-f357-48dc-97d9-8ad1c5ec766b",
"toteId": "5aec2d78-1848-4487-98b7-5c246cb39bea",
"bets": {
"nodes": [
{
"id": "bet-swinger-62013aee-f357-48dc-97d9-8ad1c5ec766b",
"toteId": "107679f99d784cb785064d83015e8434",
"placement": {
"status": "ACCEPTED"
}
}
]
}
}
}
}
}
Permutations¶
You can make more than two selections, and this will perm up the bet to cover multiple lines. In the example below, we make 4 selections, this makes for a total of 6 lines, at 9p per line for a total bet of 54p.
Lines Covered
- 1212558 & 1212559
- 1212558 & 1212560
- 1212558 & 1212561
- 1212559 & 1212560
- 1212559 & 1212561
- 1212560 & 1212561
mutation PlaceSwingerPermBet {
placeBets(
input: {
ticketId: "ticket-57b00eaf-b644-47d3-ad33-76be283f5409"
bets: [
{
betId: "bet-swinger-perm-57b00eaf-b644-47d3-ad33-76be283f5409"
productId: 437045
stake: { currencyCode: GBP, totalAmount: 0.54 }
legs: [
{
productLegId: 495284
selections: [
{ productLegSelectionID: 1212558 }
{ productLegSelectionID: 1212559 }
{ productLegSelectionID: 1212560 }
{ productLegSelectionID: 1212561 }
]
}
]
}
]
}
) {
ticket {
id
toteId
bets {
nodes {
id
toteId
placement {
status
}
}
}
}
}
}
Response
{
"data": {
"placeBets": {
"ticket": {
"id": "ticket-57b00eaf-b644-47d3-ad33-76be283f5409",
"toteId": "f3cb399a-a96f-41c9-84ac-3a7022d8b041",
"bets": {
"nodes": [
{
"id": "bet-swinger-perm-57b00eaf-b644-47d3-ad33-76be283f5409",
"toteId": "f2d1fca49328453cb34ed17697a048d0",
"placement": {
"status": "ACCEPTED"
}
}
]
}
}
}
}
}