interface GraphQLResponse {
    data?: Record<string, any>;
    errors?: {
        message: string;
    }[];
}

Properties

Properties

data?: Record<string, any>
errors?: {
    message: string;
}[]

Type declaration

  • message: string