OBJECT

PackageGrant

Package Grants control the visibility of packages and their resources to other organizations. If a package grant does not exist for an organization, access will be determined by that package's distribution type.

link GraphQL Schema definition

1type PackageGrant {
2
3# This is the package that will have its access level defined
4# for the specified organization.
5package: Package!
6
7# The organization to be granted or denied access.
8organization: OrganizationInfo!
9
10# This specifies whether access should be granted or denied to an organization.
11grantType: PackageGrantType!
12
13createdAt: DateTime!
14
15modifiedAt: DateTime!
16
17createdBy: BasicUserInfo!
18
19modifiedBy: BasicUserInfo!
20
21}