Interface ListTeamsInOrgRawResult

Source
Expand description

Raw result interface for the list teams query response.

remarks

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);
interface ListTeamsInOrgRawResult {
    data: Data | null;
    errors?: Error[];
}

Properties§

§data: Data | null
§errors?: Error[]