Waiting for engine...
Skip to main content

Bundle

No description

type Bundle {
id: ID!
name: String!
description: String
ownerAccountId: String!
publisher: Publisher
sharingMode: SharingMode!
createdBy: String
createdDate: DateTime!
modifiedBy: String
modifiedDate: DateTime
artifacts: [Artifact!]
sharingTargets: [SharingTarget!]
sharedDate: DateTime
bundleOwner: Boolean
bundleAssetGraph: String
}

Fields​

Bundle.id ● ID! non-null scalar miscellaneous {#id}

Unique identifier for the bundle

Bundle.name ● String! non-null scalar miscellaneous {#name}

The display name of the bundle

Bundle.description ● String scalar miscellaneous {#description}

A description of what this bundle contains or does

Bundle.ownerAccountId ● String! non-null scalar miscellaneous {#owner-account-id}

The Platform account id of the user who created this bundle

Bundle.publisher ● Publisher object platform {#publisher}

The publisher associated with this bundle

Bundle.sharingMode ● SharingMode! non-null enum bundles {#sharing-mode}

The sharing mode for this Bundle (e.g. PUBLIC, PRIVATE, ACCESS_LIST)

Bundle.createdBy ● String scalar miscellaneous {#created-by}

The user who created this bundle

Bundle.createdDate ● DateTime! non-null scalar platform {#created-date}

The date and time when this bundle was created

Bundle.modifiedBy ● String scalar miscellaneous {#modified-by}

The user who last modified this bundle

Bundle.modifiedDate ● DateTime scalar platform {#modified-date}

The date and time when this bundle was last modified

Bundle.artifacts ● [Artifact!] list object bundles {#artifacts}

List of artifacts contained within this bundle

Bundle.sharingTargets ● [SharingTarget!] list object bundles {#sharing-targets}

List of targets that this bundle is shared with

Bundle.sharedDate ● DateTime scalar platform {#shared-date}

The date on which this bundle was shared with the API requester's account

Bundle.bundleOwner ● Boolean scalar miscellaneous {#bundle-owner}

Indicates whether the current user is the owner of this bundle

Bundle.bundleAssetGraph ● String scalar miscellaneous {#bundle-asset-graph}

The bundle's solution graph (nodes + relationships) as a JSON string, latest published version. Resolved from S3 + DB pointer; null if none.

Returned By​

bundle query

Member Of​

PaginatedBundle object

Implemented By​

_Entity union

On this Page