Feature Request
Add functionality to fetch organization-level statistics and metadata.
Proposed API
import { getOrganization } from 'gitevents-fetch'
const org = await getOrganization('org-name')
// Returns: { name, description, memberCount, publicRepos, websiteUrl, avatarUrl, etc. }
Use Case
- Display organization information
- Show member count and repository statistics
- Access organization metadata
Implementation Notes
- Should use GitHub GraphQL API's organization queries
- Return structured organization data
- Follow same authentication pattern as existing queries
- Include relevant stats: member count, public repos, etc.