RepositoryType

RepositoryType Type

Enum defining whether a repository can be moved or is fixed in place.

Values

Value
Description

dynamic

Repository that can be moved (e.g., pallets, totes, trolleys, forklifts)

static

Repository that is fixed in place (e.g., warehouse, zones, shelves, bins)

Usage Example

query {
  repositories(
    where: { type: static }
  ) {
    edges {
      node {
        id
        name
        type
        virtualRepo
      }
    }
  }
}

Notes

The actual type of repository (warehouse, shelf, bin, pallet, etc.) is determined by:

  • The repository's name

  • Its position in the hierarchy (parent-child relationships)

  • Custom data fields via dataType

For example, a static repository at the root level might be a warehouse, while a dynamic repository might be a pallet or forklift.

Last updated

Was this helpful?