OBJECT

Package

link GraphQL Schema definition

1type Package {
2
3id: ID!
4
5organization: OrganizationInfo
6
7name: String!
8
9description: String
10
11icon: String
12
13distributionType: EngineDistributionType
14
15version: String!
16
17sourceOriginId: ID
18
19sourcePackageId: ID
20
21aiwareVersion: String
22
23deleted: Boolean
24
25status: PackageStatus
26
27# The date the package was installed onto the instance
28installDate: DateTime
29
30# The date the package was available for distribution. This depends on the
31# package's status and the distribution type
32distributionDate: DateTime
33
34primaryResourceId: ID @deprecated( reason: "duplicate" )
35
36primaryResource: PackageResource
37
38resources(type: PackageResourceType): PackageResourceList
39
40# The date the package was created at the package origin
41createdAt: DateTime!
42
43modifiedAt: DateTime!
44
45createdBy: BasicUserInfo!
46
47modifiedBy: BasicUserInfo!
48
49}