# games.gamesgamesgamesgames.feed.getUpcomingReleasesFeed

> Published by [gamesgamesgamesgames.games](https://lexicon.garden/identity/did:web:gamesgamesgamesgames.games)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:web:gamesgamesgamesgames.games/games.gamesgamesgamesgames.feed.getUpcomingReleasesFeed)
- [Documentation](https://lexicon.garden/lexicon/did:web:gamesgamesgamesgames.games/games.gamesgamesgamesgames.feed.getUpcomingReleasesFeed/docs)
- [Examples](https://lexicon.garden/lexicon/did:web:gamesgamesgamesgames.games/games.gamesgamesgamesgames.feed.getUpcomingReleasesFeed/examples)

## Definitions

### `games.gamesgamesgamesgames.feed.getUpcomingReleasesFeed`

**Type**: `query`

Get upcoming game releases ordered by closest release date first.

#### Parameters

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `to` | `string` | No | Upper bound date as YYYYMMDD (inclusive). Limits results to releases on or before this date. |
| `now` | `string` | No | Current date as YYYYMMDD. Used to determine what counts as upcoming. |
| `from` | `string` | No | Lower bound date as YYYYMMDD (exclusive). Overrides 'now' for the chronological mode filter. |
| `limit` | `integer` | No |  |
| `cursor` | `string` | No |  |
| `shuffle` | `boolean` | No | When true, returns a randomized subset from the near-term window instead of stable chronological order. |

#### Output

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `feed` | `array` | Yes |  |
| `cursor` | `string` | No |  |
| `totalCount` | `integer` | No |  |

## Raw Schema

```json
{
  "id": "games.gamesgamesgamesgames.feed.getUpcomingReleasesFeed",
  "defs": {
    "main": {
      "type": "query",
      "output": {
        "schema": {
          "type": "object",
          "required": [
            "feed"
          ],
          "properties": {
            "feed": {
              "type": "array",
              "items": {
                "ref": "games.gamesgamesgamesgames.defs#gameFeedViewItem",
                "type": "ref"
              }
            },
            "cursor": {
              "type": "string"
            },
            "totalCount": {
              "type": "integer"
            }
          }
        },
        "encoding": "application/json"
      },
      "parameters": {
        "type": "params",
        "properties": {
          "to": {
            "type": "string",
            "description": "Upper bound date as YYYYMMDD (inclusive). Limits results to releases on or before this date."
          },
          "now": {
            "type": "string",
            "description": "Current date as YYYYMMDD. Used to determine what counts as upcoming."
          },
          "from": {
            "type": "string",
            "description": "Lower bound date as YYYYMMDD (exclusive). Overrides 'now' for the chronological mode filter."
          },
          "limit": {
            "type": "integer",
            "default": 50,
            "maximum": 100,
            "minimum": 1
          },
          "cursor": {
            "type": "string"
          },
          "shuffle": {
            "type": "boolean",
            "default": false,
            "description": "When true, returns a randomized subset from the near-term window instead of stable chronological order."
          }
        }
      },
      "description": "Get upcoming game releases ordered by closest release date first."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
