Exploring Gardens & Work

Browse gardens, analyze impact metrics, and track community progress.


Browsing Gardens

Via GraphQL:

query Gardens($location: String) {
  Garden(where: {location: {_ilike: $location}}) {
    id
    name
    location
    gardeners
    operators
    workCount: Work_aggregate {
      aggregate { count }
    }
  }
}

Filter By:

  • Location (city, region)

  • Tags (future)

  • Capital focus

  • Activity level


Garden-Level Analytics

Key Metrics:

  • Total work submissions

  • Approval rate

  • Active gardeners

  • Cumulative impact (trees planted, area restored, etc.)

Query Example:


Viewing Work Details

All work for a garden:

Photos/Media: IPFS CIDs in media array. Fetch via https://ipfs.io/ipfs/{CID} or Pinata gateway.


Learn More

Last updated