> ## Documentation Index
> Fetch the complete documentation index at: https://docs.alumio.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Storage: Get all items

> Gets all items from a storage.

export const FormField = ({property, label, required = false, diType, uiPatterns, children}) => {
  const patterns = Array.isArray(uiPatterns) ? uiPatterns : uiPatterns ? [uiPatterns] : [];
  return <div style={{
    margin: '1.5rem 0'
  }}>
      <div style={{
    display: 'flex',
    alignItems: 'baseline',
    flexWrap: 'wrap',
    gap: '0.5rem',
    marginBottom: '0.25rem'
  }}>
        <strong>{label}</strong>
        <span style={{
    fontSize: '0.7rem',
    fontWeight: 600,
    textTransform: 'uppercase',
    letterSpacing: '0.04em',
    color: required ? '#6241f5' : '#6b7280'
  }}>
          {required ? 'Required' : 'Optional'}
        </span>
      </div>

      <div>{children}</div>

      {diType || patterns.length > 0 ? <p style={{
    fontSize: '0.85rem',
    color: '#6b7280',
    marginBottom: 0
  }}>
          {diType ? <>
              See the <a href={`/references/${diType}`}>{diType}</a> reference.{' '}
            </> : null}
          {patterns.length > 0 ? <>
              Accepts a <a href={`/documentation/placeholders-and-patterns/patterns#${patterns[0]}`}>pattern</a>.
            </> : null}
        </p> : null}
    </div>;
};

Reads every item kept in a storage and places them into your data, grouped under their identifiers. Use this when you need the whole contents of a storage at once, for example to load a full lookup table that was saved on an earlier run. The items are placed at the location you choose, ready for the next steps to work with.

This documentation describes: [Schema](/schemas/transformer/storage-all-from-storage)

## Fields

<FormField property="storage" label="Storage" required diType="storage">
  The storage to read the items from. You select a storage that was set up beforehand.
</FormField>

<FormField property="destination" label="Destination" required>
  The location in your data where the items are placed, each under its own identifier. [Placeholders](/references/placeholders) are supported, so the destination can be built from the data.
</FormField>

## Sample data

This transformer reads from a configured storage backend, so there is no fixed before and after to show. The example below loads every item in the storage and places them at `currencies`, each grouped under its own identifier.

| Field       | Value                       |
| ----------- | --------------------------- |
| Storage     | A storage set up beforehand |
| Destination | `currencies`                |

```json Configuration theme={null}
{
  "prototype": "storage-all-from-storage",
  "parameters": {
    "storage": { "prototype": "storage", "parameters": {} },
    "destination": "currencies"
  }
}
```
