OBJECT

InventorySubHierarchyRoot

link GraphQL Schema definition

  • type InventorySubHierarchyRoot {
  • rootEnum: InventorySubHierarchyRootEnum!
  • # List of children.
  • #
  • # Arguments
  • # first: Returns the first n elements from the list.
  • # after: Returns the elements in the list that come after the
  • # specified cursor.
  • # sortBy: Sort hierarchy objects by hierarchy field.
  • # sortOrder: Sorting order for the results.
  • # typeFilter: Types of objects to include.
  • # filter: The hierarchy object filter.
  • # workloadHierarchy: Each enumeration value represents the
  • # hierarchy of a specific workload type for RBAC and SLA Domain assignments. The
  • # None value represents the hierarchy of all workload types.
  • childConnection(
  • first: Int,
  • after: String,
  • sortBy: HierarchySortByField,
  • sortOrder: SortOrder,
  • typeFilter: [HierarchyObjectTypeEnum!],
  • filter: [Filter!],
  • workloadHierarchy: WorkloadLevelHierarchy
  • ): HierarchyObjectConnection!
  • # List of descendants.
  • #
  • # Arguments
  • # first: Returns the first n elements from the list.
  • # after: Returns the elements in the list that come after the
  • # specified cursor.
  • # sortBy: Sort hierarchy objects by hierarchy field.
  • # sortOrder: Sorting order for the results.
  • # typeFilter: Types of objects to include.
  • # filter: The hierarchy object filter.
  • # workloadHierarchy: Each enumeration value represents the
  • # hierarchy of a specific workload type for RBAC and SLA Domain assignments. The
  • # None value represents the hierarchy of all workload types.
  • descendantConnection(
  • first: Int,
  • after: String,
  • sortBy: HierarchySortByField,
  • sortOrder: SortOrder,
  • typeFilter: [HierarchyObjectTypeEnum!],
  • filter: [Filter!],
  • workloadHierarchy: WorkloadLevelHierarchy
  • ): HierarchyObjectConnection!
  • # List of top-level descendants (with respect to RBAC).
  • #
  • # Arguments
  • # first: Returns the first n elements from the list.
  • # after: Returns the elements in the list that come after the
  • # specified cursor.
  • # sortBy: Sort hierarchy objects by hierarchy field.
  • # sortOrder: Sorting order for the results.
  • # typeFilter: Types of objects to include.
  • # filter: The hierarchy object filter.
  • topLevelDescendantConnection(
  • first: Int,
  • after: String,
  • sortBy: HierarchySortByField,
  • sortOrder: SortOrder,
  • typeFilter: [HierarchyObjectTypeEnum!],
  • filter: [Filter!]
  • ): HierarchyObjectConnection!
  • }

link Require by