Issuers

Token issuers, financial data, and capitalization tables.

Issuers

Issuing company listed on the platform. Holds corporate identity, social links, and references to its tokens, articles, and capitalization data.

Fields

Fields on the Issuer object.

FieldTypeDescription
idID!
tradingNameString!Commercial name used for public display.
tagLineStringShort marketing phrase summarizing the issuer.
descriptionString
websiteString
countryCountry
slugString!URL-friendly unique identifier.
tradingLocationString!City or region where the issuer primarily operates.
leiStringLegal Entity Identifier (ISO 17442), resolved from the owner user.
twitterUrlString
youtubeUrlString
linkedinUrlString
facebookUrlString
discordUrlString
instagramUrlString
ownerUser!User who owns and administers this issuer.
tokensTokenConnection!
Arguments: first: Int, last: Int, before: String, after: String, visibility: TokenVisibility
Paginated list of tokens issued by this company.
companyLogoDocumentLogo document associated with this issuer.
industryClassificationBenchmarkIndustryClassificationBenchmarkIndustry classification assigned to this issuer.
articlesArticleConnection!
Arguments: first: Int, last: Int, before: String, after: String
Paginated list of articles published by this issuer.
legacyShareholdersLegacyShareholderConnection!
Arguments: first: Int, last: Int, before: String, after: String
Paginated list of legacy shareholders imported before on-chain migration.
capitalizationTableCapitalizationTable!
Arguments: date: Time
Capitalization table snapshot, optionally filtered by date.
initialNumberOfSharesIntInitial number of shares to be issued.
marketDescriptionStringDescription of the market the issuer operates in.
financialDataIssuerFinancialDataConnection!
Arguments: first: Int, last: Int, before: String, after: String
Key financial data entries for this issuer.
companyNameStringCompany name of the issuer's legal entity.
legalFormUserCompanyLegalFormLegal form of the issuer's company.
headquartersAddressStringFormatted headquarters address (one-liner).

Queries

Root queries that return or operate on this object.

industryClassificationBenchmarks

Retrieve a paginated list of all Industry Classification Benchmark entries.

type Query {
  industryClassificationBenchmarks(first: Int, last: Int, before: String, after: String): IndustryClassificationBenchmarkConnection!
}

Arguments

ArgumentTypeDescription
firstInt
lastInt
beforeString
afterString

Returns

IndustryClassificationBenchmarkConnection

Related types

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

Objects

CapitalizationTable

Type: object

Point-in-time snapshot of an issuer's capitalization table. Aggregates total value, per-holder breakdowns, and per-token summaries.

Fields
FieldTypeDescription
dateTime!Reference date of the snapshot.
totalValueUint64!Combined value of all tokens in the table. Amount in euro cents.
holders[CapitalizationTableHolder!]!Per-holder breakdown of token ownership.
tokens[CapitalizationTableToken!]!Per-token summary across all holders.

CapitalizationTableHolder

Type: object

Single holder's position in the capitalization table, with per-token balances and ownership percentage.

Fields
FieldTypeDescription
userUser!User account of the holder.
userIDID!
userHolderUserHolder!Holder profile associated with this user.
totalValueUint64!Aggregate value of all tokens held by this holder. Amount in euro cents.
percentageFloat!Ownership share expressed as a fraction of the total capitalization.
tokenBalances[CapitalizationTableTokenBalance!]!Breakdown of this holder's balance per token.

CapitalizationTableToken

Type: object

Aggregated figures for a single token across all holders in the capitalization table.

Fields
FieldTypeDescription
tokenIDID!
tokenToken!
currentPriceUint64!Latest unit price of the token. Amount in euro cents.
totalBalanceSpecificTokenUint64!Total units held across all holders for this token.
totalBalancesSupplyUint64!Total minted supply of this token.
totalTokenValueUint64!Combined value of all held units (balance x price). Amount in euro cents.
totalSupplyValueUint64!Combined value of the full supply (supply x price). Amount in euro cents.

CapitalizationTableTokenBalance

Type: object

Balance of a single token held by one holder in the capitalization table.

Fields
FieldTypeDescription
tokenIDID!
tokenToken!
balanceSpecificTokenUint64!Number of units held for this specific token.
currentPriceUint64!Latest unit price of the token. Amount in euro cents.
totalTokenValueUint64!Total value of this token position (balance x price). Amount in euro cents.

IndustryClassificationBenchmark

Type: object

Industry Classification Benchmark (ICB) entry. Provides a four-level taxonomy (industry, supersector, sector, subsector) used to categorize issuers.

Fields
FieldTypeDescription
idID!
industryString!Top-level ICB industry name.
supersectorString!Second-level ICB supersector name.
sectorString!Third-level ICB sector name.
subsectorString!Fourth-level ICB subsector name.
descriptionString!Human-readable description of the subsector.
subsectorCodeString!Numeric code identifying the subsector.

IndustryClassificationBenchmarkConnection

Type: object

Relay connection for paginated IndustryClassificationBenchmark results.

Fields
FieldTypeDescription
nodes[IndustryClassificationBenchmark]!
edges[IndustryClassificationBenchmarkEdge!]!
pageInfoPageInfo!
totalCountInt!

IndustryClassificationBenchmarkEdge

Type: object

Relay edge wrapping an IndustryClassificationBenchmark node with its pagination cursor.

Fields
FieldTypeDescription
cursorString!
nodeIndustryClassificationBenchmark!

IssuerFinancialData

Type: object

Key financial data for an issuer over a specific period.

Implements: Node

Fields
FieldTypeDescription
idID!
createdAtTime!
issuerIssuer!The issuer this financial data belongs to.
periodTypeIssuerFinancialDataPeriodType!Period type (first semester or full year).
yearInt!Calendar year of the data.
revenueIntRevenue (chiffre d'affaires) in euro cents.
ebitdaIntEBITDA in euro cents.
ebitIntEBIT in euro cents.
netIncomeIntNet income (résultat net) in euro cents.

IssuerFinancialDataConnection

Type: object

Relay connection for paginated IssuerFinancialData results.

Fields
FieldTypeDescription
nodes[IssuerFinancialData]!
edges[IssuerFinancialDataEdge!]!
pageInfoPageInfo!
totalCountInt!

IssuerFinancialDataEdge

Type: object

Relay edge wrapping an IssuerFinancialData node with its pagination cursor.

Fields
FieldTypeDescription
cursorString!
nodeIssuerFinancialData!

IssuerLegacyShareholder

Type: object

Shareholder record imported from a pre-platform cap table. Tracks the number of shares and their delivery status during migration to on-chain tokens.

Implements: Node

Fields
FieldTypeDescription
idID!
issuerIssuer!Issuer whose legacy cap table contains this record.
userUser!User account linked to this legacy shareholder.
statusIssuerLegacyShareholderStatus!Current delivery status of the legacy shares.
numberOfSharesInt!Quantity of legacy shares held.
priceInt!Per-share price recorded at import time, in cents.
createdAtTime!

LegacyShareholderConnection

Type: object

Relay connection for paginated LegacyShareholder results.

Fields
FieldTypeDescription
edges[LegacyShareholderEdge!]!
nodes[IssuerLegacyShareholder!]!
pageInfoPageInfo!
totalCountInt!

LegacyShareholderEdge

Type: object

Relay edge wrapping a LegacyShareholder node with its pagination cursor.

Fields
FieldTypeDescription
cursorString!
nodeIssuerLegacyShareholder!

Enums

IssuerFinancialDataPeriodType

Type: enum

Period type for financial data entries.

Values
ValueDescription
FIRST_SEMESTERFirst semester (S1) data.
YEARFull year data.

IssuerLegacyShareholderStatus

Type: enum

Delivery status of legacy shares migrated to the on-chain registry.

Values
ValueDescription
PENDINGShares recorded but not yet delivered on-chain.
DELIVEREDShares successfully delivered on-chain.

IssuerMarketType

Type: enum

Market segment in which an issuer's tokens can be traded.

Values
ValueDescription
PRIMARY_MARKETInitial offering phase where tokens are sold directly by the issuer.
SECONDARY_MARKETPost-offering phase where tokens are traded between investors.