installation control examples.md

Installation Control Examples

Creating Ion Actions for A-Bomb Installations

Objective

This outlines the steps to develop ion actions for A-bomb installations, focusing on identifying and utilizing necessary IDs for successful execution of the context query. This aids in developing ION Actions.

Key Steps

Step 1: Understand the Context for Ion Actions 0:00

query ($buildRequirementId: ID!, $partInventoryId: ID!) {
  abomInstallation(
    buildRequirementId: $buildRequirementId
    partInventoryId: $partInventoryId
  ) {
    id
    partInventory {
      id
    }
  }
}
{
  "buildRequirementId":INSERT ID HERE, 
  "partInventoryId":INSERT ID HERE
}

Step 2: Install GraphQL Network Inspector 1:32

Step 3: Execute a Mutation to Install Part Inventory 2:15

Step 4: Analyze the Response for IDs 3:14

Step 5: Save the Context of the Rule Query 5:26

{
  "buildRequirementId":2622, 
  "partInventoryId":2079
}

Step 6: Access Origin Part Inventory Attributes 6:28

Cautionary Notes

Tips for Efficiency

Link to Loom

https://loom.com/share/d8dd4e1a7eb844d4bf74e3a11f5457b1