Querying Gardens
Examples
This example shows how to query a list of Gardens
query Organizations(
$first: Int!
$skip: Int!
$orderBy: String!
$orderDirection: String!
) {
organizations(
first: $first
where: { active: true }
skip: $skip
orderBy: $orderBy
orderDirection: $orderDirection
) {
id
active
createdAt
proposalCount
token {
id
symbol
name
decimals
}
wrappableToken {
id
symbol
name
decimals
}
honeyLiquidity
supporterCount
incentivisedPriceOracle
unipool
}
}Returns
This example shows how to query an organization within a Garden
Result
Last updated
Was this helpful?