Skip to main content

Drop

No description

type Drop {
id: UUID!
dropType: DropType!
projectId: UUID!
creationStatus: CreationStatus!
startTime: DateTime
endTime: DateTime
price: Int!
createdById: UUID!
createdAt: DateTime!
pausedAt: DateTime
shutdownAt: DateTime
collection: Collection!
status: DropStatus!
queuedMints: [CollectionMint!]
purchases: [MintHistory!]
}

Fields

Drop.id ● UUID! non-null scalar

The unique identifier for the drop.

Drop.dropType ● DropType! non-null enum

Drop.projectId ● UUID! non-null scalar

The identifier of the project to which the drop is associated.

Drop.creationStatus ● CreationStatus! non-null enum

The creation status of the drop.

Drop.startTime ● DateTime scalar

The date and time in UTC when the drop is eligible for minting. A value of null means the drop can be minted immediately.

Drop.endTime ● DateTime scalar

The end date and time in UTC for the drop. A value of null means the drop does not end until it is fully minted.

Drop.price ● Int! non-null scalar

The cost to mint the drop in US dollars. When purchasing with crypto the user will be charged at the current conversion rate for the blockchain's native coin at the time of minting.

Drop.createdById ● UUID! non-null scalar

The user id of the person who created the drop.

Drop.createdAt ● DateTime! non-null scalar

The date and time in UTC when the drop was created.

Drop.pausedAt ● DateTime scalar

Drop.shutdownAt ● DateTime scalar

The shutdown_at field represents the date and time in UTC when the drop was shutdown If it is null, the drop is currently not shutdown

Drop.collection ● Collection! non-null object

The collection for which the drop is managing mints.

Drop.status ● DropStatus! non-null enum

The current status of the drop.

Drop.queuedMints ● [CollectionMint!] list object

Drop.purchases ● [MintHistory!] list object

A list of all NFT purchases from this drop.

Returned by

drop query

Member of

Collection object ● CreateDropPayload object ● PatchDropPayload object ● PauseDropPayload object ● Project object ● ResumeDropPayload object ● ShutdownDropPayload object