Project Registry
Integrating with the Project Registry

description: How can I query Project Registry data?

Integrating with the Project Registry

This page covers:

Project Registry Subgraphs

Project registry data is publicly available through The Graph. See the Indexing page for access details.

Accessing Project Registry Data

Subgraph data can be accessed either manually through the subgraph Playground, or programmatically through The Graph API. For more information about how to set up these methods, please see the Querying the Graph (opens in a new tab) page in The Graph documentation.

If you would like to display Project Registry data in another app, see The Graph article on Querying from an Application (opens in a new tab).

Sample Data

An example of the data returned from a graph query is below. For details on the data objects available, the object definition tables.

{
  "data": {
    "metaPtrs": [
      {
        "id": "0x0067d80a449812df249712d8bfffcc41b0efc3a02f6494fab80b685044206001-0xd95a1969c41112cee9a2c931e849bcef36a16f4c",
        "protocol": 1,
        "pointer": "bafkreifknenozxxoil4d4v7i2x5kou7b67stcujjvwdqm7exofdqjuzjqq"
      }
    ],
    "programs": [
      {
        "id": "0x0515c873d9afc5fc8523c9eb148e8b9cab5125da",
        "roles": [
          {
            "id": "0x0515c873d9afc5fc8523c9eb148e8b9cab5125da-0x0000000000000000000000000000000000000000000000000000000000000000",
            "role": "0x0000000000000000000000000000000000000000000000000000000000000000"
          }
        ],
        "accounts": [
          {
            "address": "0x0000008735754eda8db6b50aeb93463045fc5c55",
            "id": "52GswSdosCpDYHmc6a1qACmzk65WwFDDApEE4KqckNjr"
          }
        ],
        "rounds": [],
        "metaPtr": {
          "id": "metaPtr-0x0515c873d9afc5fc8523c9eb148e8b9cab5125da",
          "pointer": "bafkreicgmns6gruzl4apju6wy3a6spywdtni6dvbwwpet3n5m226juio2a",
          "protocol": 1
        },
        "updatedAt": "1680284639",
        "createdAt": "1680284639"
      }
    ]
  }
}

Object Definition Tables

MetaPtr

FieldData TypeSample Value
idID"0x0067d80a449812df249712d8bfffcc41b0efc3a02f6494fab80b685044206001-0xd95a1969c41112cee9a2c931e849bcef36a16f4c"
protocolInt1
pointerString"bafkreifknenozxxoil4d4v7i2x5kou7b67stcujjvwdqm7exofdqjuzjqq"

Program

FieldData TypeSample Value
idID"0x0515c873d9afc5fc8523c9eb148e8b9cab5125da"
rolesArray of ProgramRole
accountsArray of ProgramAccount
roundsArray of Round
metaPtrMetaPtr
createdAtBigInt"1680284639"
updatedAtBigInt"1680284639"

ProgramRole

FieldData TypeSample Value
idID"0x0515c873d9afc5fc8523c9eb148e8b9cab5125da-0x0000000000000000000000000000000000000000000000000000000000000000"
roleString"0x0000000000000000000000000000000000000000000000000000000000000000"
accountsArray of ProgramAccount
programProgram

ProgramAccount

FieldData TypeSample Value
idID"52GswSdosCpDYHmc6a1qACmzk65WwFDDApEE4KqckNjr"
addressString"0x0000008735754eda8db6b50aeb93463045fc5c55"
roleProgramRole
programProgram

Round

FieldData TypeSample Value
idID"52GswSdosCpDYHmc6a1qACmzk65WwFDDApEE4KqckHgi"
programProgram
rolesArray of RoundRole
accountsArray of RoundAccount
projectsArray of RoundProject
votingStrategyVotingStrategy
payoutStrategyString
applicationsStartTimeString"1680284639"
applicationsEndTimeString"1680284639"
roundStartTimeString"1680284639"
roundEndTimeString"1680284639"
tokenString
roundMetaPtrMetaPtr
applicationMetaPtrMetaPtr
projectsMetaPtrMetaPtr
createdAtBigInt"1680284639"
updatedAtBigInt"1680284639"

RoundRole

FieldData TypeSample Value
idID"0x0515c873d9afc5fc8523c9eb148e8b9cab5125da-0x0000000000000000000000000000000000000000000000000000000000000000"
roleString"0x0000000000000000000000000000000000000000000000000000000000000000"
accountsArray of RoundAccount
roundRound

RoundAccount

FieldData TypeSample Value
idID"52GswSdosCpDYHmc6a1qACmzk65WwFDDApEE4KqckNjr"
addressString"0x0000008735754eda8db6b50aeb93463045fc5c55"
roleRoundRole
roundRound

RoundProject

FieldData TypeSample Value
idID
projectString
statusString
metaPtrMetaPtr
roundRound
payoutAddressString
createdAtBigInt
updatedAtBigInt

VotingStrategy

FieldData TypeSample Value
idID
strategyNameString
StrategyAddressString
roundRound
votesQFVote
versionString

QFVote

FieldData TypeSample Value
idID
votingStrategyVotingStrategy
tokenString
amountBigInt
fromString
toString
projectIdString
versionString
createdAtBigInt

Query Structure

Below is a JSON structure of available query fields for the Allo Project Registry.

Queries can be built through The Graph playground for

metaPtr(
    block: Block_height
    id: ID!
    subgraphError: _SubgraphErrorPolicy_! = deny
): MetaPtr
 
metaPtrs(
    block: Block_height
    first: Int = 100
    orderBy: MetaPtr_orderBy
    orderDirection: OrderDirection
    skip: Int = 0
    subgraphError: _SubgraphErrorPolicy_! = deny
    where: MetaPtr_filter
): [MetaPtr!]!
 
program(
    block: Block_height
    id: ID!
    subgraphError: _SubgraphErrorPolicy_! = deny
): Program
 
programs(
    block: Block_height
    first: Int = 100
    orderBy: Program_orderBy
    orderDirection: OrderDirection
    skip: Int = 0
    subgraphError: _SubgraphErrorPolicy_! = deny
    where: Program_filter
): [Program!]!
 
programRole(
    block: Block_height
    id: ID!
    subgraphError: _SubgraphErrorPolicy_! = deny
): ProgramRole
 
programRoles(
    block: Block_height
    first: Int = 100
    orderBy: ProgramRole_orderBy
    orderDirection: OrderDirection
    skip: Int = 0
    subgraphError: _SubgraphErrorPolicy_! = deny
    where: ProgramRole_filter
): [ProgramRole!]!
 
programAccount(
    block: Block_height
    id: ID!
    subgraphError: _SubgraphErrorPolicy_! = deny
): ProgramAccount
 
programAccounts(
    block: Block_height
    first: Int = 100
    orderBy: ProgramAccount_orderBy
    orderDirection: OrderDirection
    skip: Int = 0
    subgraphError: _SubgraphErrorPolicy_! = deny
    where: ProgramAccount_filter
): [ProgramAccount!]!
 
round(
    block: Block_height
    id: ID!
    subgraphError: _SubgraphErrorPolicy_! = deny
): Round
 
rounds(
    block: Block_height
    first: Int = 100
    orderBy: Round_orderBy
    orderDirection: OrderDirection
    skip: Int = 0
    subgraphError: _SubgraphErrorPolicy_! = deny
    where: Round_filter
): [Round!]!
 
roundRole(
    block: Block_height
    id: ID!
    subgraphError: _SubgraphErrorPolicy_! = deny
): RoundRole
 
roundRoles(
    block: Block_height
    first: Int = 100
    orderBy: RoundRole_orderBy
    orderDirection: OrderDirection
    skip: Int = 0
    subgraphError: _SubgraphErrorPolicy_! = deny
    where: RoundRole_filter
): [RoundRole!]!
 
roundAccount(
    block: Block_height
    id: ID!
    subgraphError: _SubgraphErrorPolicy_! = deny
): RoundAccount
 
roundAccounts(
    block: Block_height
    first: Int = 100
    orderBy: RoundAccount_orderBy
    orderDirection: OrderDirection
    skip: Int = 0
    subgraphError: _SubgraphErrorPolicy_! = deny
    where: RoundAccount_filter
): [RoundAccount!]!
 
roundProject(
    block: Block_height
    id: ID!
    subgraphError: _SubgraphErrorPolicy_! = deny
): RoundProject
 
roundProjects(
    block: Block_height
    first: Int = 100
    orderBy: RoundProject_orderBy
    orderDirection: OrderDirection
    skip: Int = 0
    subgraphError: _SubgraphErrorPolicy_! = deny
    where: RoundProject_filter
): [RoundProject!]!
 
votingStrategy(
    block: Block_height
    id: ID!
    subgraphError: _SubgraphErrorPolicy_! = deny
): VotingStrategy
 
votingStrategies(
    block: Block_height
    first: Int = 100
    orderBy: VotingStrategy_orderBy
    orderDirection: OrderDirection
    skip: Int = 0
    subgraphError: _SubgraphErrorPolicy_! = deny
    where: VotingStrategy_filter
): [VotingStrategy!]!
 
qfvote(
    block: Block_height
    id: ID!
    subgraphError: _SubgraphErrorPolicy_! = deny
): QFVote
 
qfvotes(
    block: Block_height
    first: Int = 100
    orderBy: QFVote_orderBy
    orderDirection: OrderDirection
    skip: Int = 0
    subgraphError: _SubgraphErrorPolicy_! = deny
    where: QFVote_filter
): [QFVote!]!
 
_meta(block: Block_height): _Meta_