Skip to main content

Query from Graph Database

Here are some query use cases for reference.

Query Type

  • identities: Fetch multiple identities based on platform and list of identity strings.
  • identity: Fetch a single identity record based on platform and identity string.
  • domainAvailableSearch: Fetch a list of domain with difference postfix on all platforms which has been taken or not.

Schema Types and Fields

IdentityRecord & IdentityRecordSimplified

Represents detailed information about a single identity.

FieldTypeDescription
idString!Unique identifier for the identity.
identityString!The string representation of the identity.
platformPlatform!Platform type (e.g., ethereum, ens, farcaster, lens ).
networkNetworkThe network on which the identity exists on chain.
primaryNameStringPrimary name associated with the identity.
isPrimaryBoolean!Indicates if this is the primary identity.
resolvedAddress[Address!]!List of resolved addresses for this identity.
ownerAddress[Address!]!List of owner addresses for this identity.
expiredAtdatetimeExpiration date of the identity.
profileProfileProfile information associated with the identity.
identityGraphIdentityGraphConnections and relationships of the identity in graph format. Notice: IdentityRecordSimplified don’t have field identityGraph

IdentityGraph

Represents relationships and connections for an identity.

FieldTypeDescription
graphIdString!Unique identifier for the identity graph.
vertices[IdentityRecordSimplified!]!List of connected identities.
edges[IdentityConnection!]!Connections between the identities (edges in the graph).

EdgeType

Represents relationships and connections for an identity.

FieldTypeDescription
HoldString!e.g. Address Hold Domain
ResolveString!e.g. A domain resolve to an address
Reverse_ResolveString!e.g. An address set reverse resolve to a domain, It can also be said to be primary_name
AuthString!e.g. OAuth account connections
ProofString!

Example Queries

query SearchDomainAvailable {
domainAvailableSearch(name: "blockchain") {
platform
name
tld
expiredAt
availability
status // taken/protected/available/unavailable
}
}

Single Identity Query

Fetches a specific ENS identity (e.g., sujiyan.eth) and includes identity connections through the identityGraph field.

query FindIdentityWithIdentityGraph{
identity(platform: ens, identity: "vitalik.eth") {
id
status
aliases
identity
platform
network
isPrimary
primaryName
registeredAt
managerAddress {
address
network
}
resolvedAddress {
address
network
}
ownerAddress {
address
network
}
updatedAt
expiredAt
profile {
uid
identity
platform
network
address
displayName
avatar
description
texts
contenthash
addresses {
address
network
}
social {
uid
follower
following
}
}
identityGraph {
graphId
vertices {
id
status
aliases
identity
platform
network
isPrimary
primaryName
registeredAt
managerAddress {
address
network
}
resolvedAddress {
address
network
}
ownerAddress {
address
network
}
expiredAt
profile {
uid
identity
platform
network
address
displayName
avatar
description
texts
addresses {
address
network
}
social {
uid
follower
following
}
}
}
edges {
source
target
dataSource
edgeType
}
}
}
}

Batch Identity Query

Fetches multiple identities by ids (which id is unique in web3bio)and returns IdentityRecordSimplified.

ids format

Platformidentityid
ethereumaddressethereum,address
ensname.ethens,name.eth
farcasterfnamefarcaster,fname
farcasterfidfarcaster,#fid
farcasteraddressfarcaster,address
lenshandle.lenslens,handle.lens
lensprofileIdlens,#profileId
lensaddresslens,address
clustersnameclusters,name
basenamesname.base.ethbasenames,name.base.eth
solanaaddresssolana,address
snsnamesns,name.sol
snsaddresssns,address
.........

Example

query BatchQueryIdentities {
identities(ids:[
"ethereum,0xd8da6bf26964af9d7eed9e03e53415d37aa96045",
"ens,vitalik.eth",
"farcaster,dwr.eth",
"lens,stani.lens",
"sns,bonfida.sol",
"ens,josh.box",
"basenames,jesse.base.eth",
"linea,joseph.linea.eth",
"dotbit,firstbit.bit",
"unstoppabledomains,matthew.crypto",
"space_id,blockchain.bnb"
// Add more identities here...
]
) {
id
status
aliases
identity
platform
network
isPrimary
primaryName
registeredAt
managerAddress {
address
network
}
resolvedAddress {
address
network
}
ownerAddress {
address
network
}
updatedAt
expiredAt
profile {
uid
identity
platform
network
address
displayName
avatar
description
texts
contenthash
addresses {
address
network
}
social {
uid
follower
following
}
}
}
}

Additional Notes for Developers

  1. Data Structures: The IdentityRecord fields contain nested data structures, including addresses and social connections. Make sure to map these fields correctly in your frontend data models.
  2. Batch Queries: The identities query allows for batch retrieval of identity records, which is efficient for displaying multiple identity profiles at once.
  3. Graph Data: The identityGraph provides connection data (vertices and edges) that can be visualized as a network graph, offering insights into how identities are interrelated.
  4. Date Handling: The Date field is in bitint format, so consider using date libraries for handling and formatting in the frontend.