SW Combine SDK
    Preparing search index...

    Galaxy systems resource

    Hierarchy (View Summary)

    Index

    Constructors

    Methods

    Constructors

    Methods

    • Get system by UID.

      Returns the System object directly — not wrapped in a Page.

      Parameters

      Returns Promise<System>

      The System entity.

      const system = await client.galaxy.systems.get({ uid: '7:123' });
      console.log(system.name); // access properties directly, not system.data
    • List all systems (paginated)

      Parameters

      • Optionaloptions: { item_count?: number; pageDelay?: number; start_index?: number }

        Optional pagination parameters

      Returns Promise<Page<GalaxySystemListItem>>

      const systems = await client.galaxy.systems.list();
      const moreSystems = await client.galaxy.systems.list({ start_index: 51, item_count: 50 });