Raw result interface for the list teams query response.
This interface represents the complete GraphQL response structure, including both successful data and potential errors.
To parse JSON data:
import { Convert, ListTeamsInOrgRawResult } from "./file";const listTeamsInOrgRawResult = Convert.toListTeamsInOrgRawResult(json); Copy
import { Convert, ListTeamsInOrgRawResult } from "./file";const listTeamsInOrgRawResult = Convert.toListTeamsInOrgRawResult(json);
interface ListTeamsInOrgRawResult { data: Data | null; errors?: Error[];}
data: Data | null
errors?: Error[]
Raw result interface for the list teams query response.