import type { ENV } from 'types'; export interface Contributor { opesId: string; joined: number; citiesVisited: number; score: number; image: string; } export interface GetContributorsArguments { env?: ENV; contributorId: string; } export interface GetContributorsResponse { getContributors: { contributors: Contributor[]; countResponse: number; }; }