Returns list of your orders on WhiteMarket
query {
order_my(
forwardPagination: {
first: 50 # How many records to retrieve
after: "Cursor value from response (pageInfo -> endCursor)" # Cursor
}
) {
# instance of MarketOrderConnectionEdge
edges {
# instance of MarketOrder
node {
# Order ID
id # 1ee4bd8c-e669-695e-9ba4-0242ac1d0008
# The ID of the app which owns the item
app # 730
# Hash name
nameHash # Sealed Graffiti | Loser (SWAT Blue)
# Quantity of products
quantity # 10
# instance of Money
price {
# Decimal value
value # 42.42
# Currency
currency # USD
}
# Status
status # ACTIVE
# Normal icon
icon # https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/paris2023/sig_floppy_large.a2063e888511d11f9ef153ddb3b705bf3f8acdfe.png
# Large icon
iconLarge # https://steamcdn-a.akamaihd.net/apps/730/icons/econ/stickers/paris2023/sig_floppy_large.a2063e888511d11f9ef153ddb3b705bf3f8acdfe.png
# instance of MarketOrderParamValue
params {
# Param name
param # CSGO_FLOAT
# Depends of param
value # 0.123456
}
# Created at
createdAt # 2023-11-29T23:33:27+0000
# Expired at
expiredAt # 2023-11-29T23:33:27+0000
}
# The edge cursor
cursor # YXJyYXljb25uZWN0aW9uOjk=
}
# instance of PageInfo
pageInfo {
# When paginating forwards, are there more items?
hasNextPage # true
# When paginating backwards, are there more items?
hasPreviousPage # false
# When paginating backwards, the cursor to continue.
startCursor # YXJyYXljb25uZWN0aW9uOjEw
# When paginating forwards, the cursor to continue.
endCursor # YXJyYXljb25uZWN0aW9uOjE5
}
# Total count of items in the connection.
totalCount # 123456
}
}