SystemData
No description
type SystemData {
  code: ID!
  name: ID!
  isActive: Boolean!
  group: Group
  owner: Organization
  suppliers(
    filter: SupplierFilter
  ): [Supplier]!
}
Fields
SystemData.code ● ID! non-null scalar
ID identifier of a System
SystemData.name ● ID! non-null scalar
System complete name
SystemData.isActive ● Boolean! non-null scalar
Indicates whether a System is active or inactive
SystemData.group ● Group object
Indicates the group where the System belongs
SystemData.owner ● Organization object
System owner
SystemData.suppliers ● [Supplier]! non-null object
Obtain all suppliers for a filter.
SystemData.suppliers.filter ● SupplierFilter input
Member Of
System  object