Primary markets

Primary market offerings for newly issued tokens.

Primary markets

Primary market offering for a token. Represents an issuance window during which investors can subscribe to purchase newly issued tokens at a fixed price.

Fields

Fields on the PrimaryMarket object.

FieldTypeDescription
idID!
createdAtTime!
slugString!Unique slug identifier for this primary market offering.
isPublishedBoolean!Whether the offering is visible to investors.
isCanceledBoolean!Whether the offering has been canceled.
startingDateTimeDate and time the subscription window opens.
endingDateTimeDate and time the subscription window closes.
targetAmountMinUint64Minimum fundraising target. Amount in euro cents.
targetAmountMaxUint64Maximum fundraising target. Amount in euro cents.
targetAmountUint64100% fundraising target. Amount in euro cents.
amountIntTotal amount currently subscribed. Amount in euro cents.
priceUint64Fixed token price during this offering. Price in euro cents per token.
isEligibleIrPmeBooleanWhether the offering is eligible for IR-PME tax relief.
isEligibleFipBooleanWhether the offering is eligible for FIP.
isEligible150BTerBooleanWhether the offering is eligible for 150-0 B ter.
isEligibleFcpiBooleanWhether the offering is eligible for FCPI.
instrumentTypePrimaryMarketInstrumentTypeType of financial instrument offered.
offerTypePrimaryMarketOfferTypeType of offer.
shareholderLockUpDaysUint64Shareholder lock-up period in days.
operationModalityStringDescription of the operation modality.
useOfProceedsStringDescription of how the raised funds will be used.
developmentStrategyStringDescription of the development strategy.
statusPrimaryMarketStatus!Current lifecycle status of the offering.
tokenToken!Token being offered in this primary market.
issuerIssuer!Issuer of the token offered in this primary market.
documentsDocumentConnection!
Arguments: first: Int, last: Int, before: String, after: String
Documents attached to this primary market offering.
userOrdersPrimaryMarketOrderConnection!
Arguments: userID: ID!, first: Int, last: Int, before: String, after: String, input: UserPrimaryMarketOrderInput
Paginated list of orders placed by a specific user on this primary market.
ordersPrimaryMarketOrderConnection!
Arguments: first: Int, last: Int, before: String, after: String, input: PrimaryMarketOrderInput
Paginated list of all orders on this primary market. Requires user.read ALL permission.

Queries

Root queries that return or operate on this object.

primaryMarket

Retrieve a single primary market offering by its identifier or slug.

type Query {
  primaryMarket(id: ID, slug: String): PrimaryMarket
}

Arguments

ArgumentTypeDescription
idID
slugString

Returns

PrimaryMarket

primaryMarkets

Retrieve a paginated list of primary markets.

type Query {
  primaryMarkets(first: Int, last: Int, before: String, after: String, visibility: PrimaryMarketVisibility): PrimaryMarketConnection!
}

Arguments

ArgumentTypeDescription
firstInt
lastInt
beforeString
afterString
visibilityPrimaryMarketVisibility

Returns

PrimaryMarketConnection

Related types

Supporting objects, inputs, and enums used by this page.

Objects

PrimaryMarketConnection

Type: object

Relay connection for paginated PrimaryMarket results.

Fields
FieldTypeDescription
nodes[PrimaryMarket]!
edges[PrimaryMarketEdge!]!
pageInfoPageInfo!
totalCountInt!

PrimaryMarketEdge

Type: object

Relay edge wrapping a PrimaryMarket node with its pagination cursor.

Fields
FieldTypeDescription
cursorString!
nodePrimaryMarket!

Enums

PrimaryMarketInstrumentType

Type: enum

Type of financial instrument offered in a primary market.

Values
ValueDescription
ORDINARY_SHAREStandard ordinary shares with voting rights.

PrimaryMarketOfferType

Type: enum

Type of offer in a primary market.

Values
ValueDescription
CAPITAL_INCREASENew shares are issued to raise capital.
HYBRIDCombination of new issuance and existing share transfer.
PARTIAL_TRANSFERExisting shareholders sell part of their holdings.

PrimaryMarketStatus

Type: enum

Lifecycle status of a primary market offering.

Values
ValueDescription
FAILEDOffering settlement or creation failed.
SUCCEEDEDOffering completed successfully and tokens were distributed.
CLOSEDSubscription window ended; minimum reached but orders await settlement.
CREATEDOffering has been created but is not yet visible to investors.
INCOMINGOffering is scheduled and awaiting its start date.
OPENOffering is currently accepting subscription orders.
CANCELEDOffering was canceled before completion.
UNKNOWNStatus could not be determined.

PrimaryMarketVisibility

Type: enum

Controls which primary markets are returned based on their publication status.

Values
ValueDescription
PUBLISHEDOnly published primary markets visible to investors.
ALLAll primary markets regardless of publication status.