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.
| Field | Type | Description |
|---|---|---|
id | ID! | — |
tradingName | String! | Commercial name used for public display. |
tagLine | String | Short marketing phrase summarizing the issuer. |
description | String | — |
website | String | — |
country | Country | — |
slug | String! | URL-friendly unique identifier. |
tradingLocation | String! | City or region where the issuer primarily operates. |
lei | String | Legal Entity Identifier (ISO 17442), resolved from the owner user. |
twitterUrl | String | — |
youtubeUrl | String | — |
linkedinUrl | String | — |
facebookUrl | String | — |
discordUrl | String | — |
instagramUrl | String | — |
owner | User! | User who owns and administers this issuer. |
tokens | TokenConnection!Arguments: first: Int, last: Int, before: String, after: String, visibility: TokenVisibility | Paginated list of tokens issued by this company. |
companyLogo | Document | Logo document associated with this issuer. |
industryClassificationBenchmark | IndustryClassificationBenchmark | Industry classification assigned to this issuer. |
articles | ArticleConnection!Arguments: first: Int, last: Int, before: String, after: String | Paginated list of articles published by this issuer. |
legacyShareholders | LegacyShareholderConnection!Arguments: first: Int, last: Int, before: String, after: String | Paginated list of legacy shareholders imported before on-chain migration. |
capitalizationTable | CapitalizationTable!Arguments: date: Time | Capitalization table snapshot, optionally filtered by date. |
initialNumberOfShares | Int | Initial number of shares to be issued. |
marketDescription | String | Description of the market the issuer operates in. |
financialData | IssuerFinancialDataConnection!Arguments: first: Int, last: Int, before: String, after: String | Key financial data entries for this issuer. |
companyName | String | Company name of the issuer's legal entity. |
legalForm | UserCompanyLegalForm | Legal form of the issuer's company. |
headquartersAddress | String | Formatted headquarters address (one-liner). |
Queries
Root queries that return or operate on this object.
industryClassificationBenchmarks
industryClassificationBenchmarksRetrieve a paginated list of all Industry Classification Benchmark entries.
type Query {
industryClassificationBenchmarks(first: Int, last: Int, before: String, after: String): IndustryClassificationBenchmarkConnection!
}Arguments
Returns
IndustryClassificationBenchmarkConnection
Related types
Supporting objects, inputs, and enums used by this page.
Objects
CapitalizationTable
CapitalizationTableType: object
Point-in-time snapshot of an issuer's capitalization table. Aggregates total value, per-holder breakdowns, and per-token summaries.
Fields
| Field | Type | Description |
|---|---|---|
date | Time! | Reference date of the snapshot. |
totalValue | Uint64! | 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
CapitalizationTableHolderType: object
Single holder's position in the capitalization table, with per-token balances and ownership percentage.
Fields
| Field | Type | Description |
|---|---|---|
user | User! | User account of the holder. |
userID | ID! | — |
userHolder | UserHolder! | Holder profile associated with this user. |
totalValue | Uint64! | Aggregate value of all tokens held by this holder. Amount in euro cents. |
percentage | Float! | Ownership share expressed as a fraction of the total capitalization. |
tokenBalances | [CapitalizationTableTokenBalance!]! | Breakdown of this holder's balance per token. |
CapitalizationTableToken
CapitalizationTableTokenType: object
Aggregated figures for a single token across all holders in the capitalization table.
Fields
| Field | Type | Description |
|---|---|---|
tokenID | ID! | — |
token | Token! | — |
currentPrice | Uint64! | Latest unit price of the token. Amount in euro cents. |
totalBalanceSpecificToken | Uint64! | Total units held across all holders for this token. |
totalBalancesSupply | Uint64! | Total minted supply of this token. |
totalTokenValue | Uint64! | Combined value of all held units (balance x price). Amount in euro cents. |
totalSupplyValue | Uint64! | Combined value of the full supply (supply x price). Amount in euro cents. |
CapitalizationTableTokenBalance
CapitalizationTableTokenBalanceType: object
Balance of a single token held by one holder in the capitalization table.
Fields
IndustryClassificationBenchmark
IndustryClassificationBenchmarkType: object
Industry Classification Benchmark (ICB) entry. Provides a four-level taxonomy (industry, supersector, sector, subsector) used to categorize issuers.
Fields
| Field | Type | Description |
|---|---|---|
id | ID! | — |
industry | String! | Top-level ICB industry name. |
supersector | String! | Second-level ICB supersector name. |
sector | String! | Third-level ICB sector name. |
subsector | String! | Fourth-level ICB subsector name. |
description | String! | Human-readable description of the subsector. |
subsectorCode | String! | Numeric code identifying the subsector. |
IndustryClassificationBenchmarkConnection
IndustryClassificationBenchmarkConnectionType: object
Relay connection for paginated IndustryClassificationBenchmark results.
Fields
| Field | Type | Description |
|---|---|---|
nodes | [IndustryClassificationBenchmark]! | — |
edges | [IndustryClassificationBenchmarkEdge!]! | — |
pageInfo | PageInfo! | — |
totalCount | Int! | — |
IndustryClassificationBenchmarkEdge
IndustryClassificationBenchmarkEdgeType: object
Relay edge wrapping an IndustryClassificationBenchmark node with its pagination cursor.
Fields
| Field | Type | Description |
|---|---|---|
cursor | String! | — |
node | IndustryClassificationBenchmark! | — |
IssuerFinancialData
IssuerFinancialDataType: object
Key financial data for an issuer over a specific period.
Implements: Node
Fields
| Field | Type | Description |
|---|---|---|
id | ID! | — |
createdAt | Time! | — |
issuer | Issuer! | The issuer this financial data belongs to. |
periodType | IssuerFinancialDataPeriodType! | Period type (first semester or full year). |
year | Int! | Calendar year of the data. |
revenue | Int | Revenue (chiffre d'affaires) in euro cents. |
ebitda | Int | EBITDA in euro cents. |
ebit | Int | EBIT in euro cents. |
netIncome | Int | Net income (résultat net) in euro cents. |
IssuerFinancialDataConnection
IssuerFinancialDataConnectionType: object
Relay connection for paginated IssuerFinancialData results.
Fields
| Field | Type | Description |
|---|---|---|
nodes | [IssuerFinancialData]! | — |
edges | [IssuerFinancialDataEdge!]! | — |
pageInfo | PageInfo! | — |
totalCount | Int! | — |
IssuerFinancialDataEdge
IssuerFinancialDataEdgeType: object
Relay edge wrapping an IssuerFinancialData node with its pagination cursor.
Fields
| Field | Type | Description |
|---|---|---|
cursor | String! | — |
node | IssuerFinancialData! | — |
IssuerLegacyShareholder
IssuerLegacyShareholderType: 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
| Field | Type | Description |
|---|---|---|
id | ID! | — |
issuer | Issuer! | Issuer whose legacy cap table contains this record. |
user | User! | User account linked to this legacy shareholder. |
status | IssuerLegacyShareholderStatus! | Current delivery status of the legacy shares. |
numberOfShares | Int! | Quantity of legacy shares held. |
price | Int! | Per-share price recorded at import time, in cents. |
createdAt | Time! | — |
LegacyShareholderConnection
LegacyShareholderConnectionType: object
Relay connection for paginated LegacyShareholder results.
Fields
| Field | Type | Description |
|---|---|---|
edges | [LegacyShareholderEdge!]! | — |
nodes | [IssuerLegacyShareholder!]! | — |
pageInfo | PageInfo! | — |
totalCount | Int! | — |
LegacyShareholderEdge
LegacyShareholderEdgeType: object
Relay edge wrapping a LegacyShareholder node with its pagination cursor.
Fields
| Field | Type | Description |
|---|---|---|
cursor | String! | — |
node | IssuerLegacyShareholder! | — |
Enums
IssuerFinancialDataPeriodType
IssuerFinancialDataPeriodTypeType: enum
Period type for financial data entries.
Values
| Value | Description |
|---|---|
FIRST_SEMESTER | First semester (S1) data. |
YEAR | Full year data. |
IssuerLegacyShareholderStatus
IssuerLegacyShareholderStatusType: enum
Delivery status of legacy shares migrated to the on-chain registry.
Values
| Value | Description |
|---|---|
PENDING | Shares recorded but not yet delivered on-chain. |
DELIVERED | Shares successfully delivered on-chain. |
IssuerMarketType
IssuerMarketTypeType: enum
Market segment in which an issuer's tokens can be traded.
Values
| Value | Description |
|---|---|
PRIMARY_MARKET | Initial offering phase where tokens are sold directly by the issuer. |
SECONDARY_MARKET | Post-offering phase where tokens are traded between investors. |

