@redocly/graphql-docs
Version:
Redocly GraphQL docs
19 lines (18 loc) • 381 B
TypeScript
export interface GraphQLInfo {
title?: string;
version?: string;
description?: string;
termsOfService?: string;
contact?: GraphQLContact;
license?: GraphQLLicense;
}
export interface GraphQLContact {
name?: string;
url?: string;
email?: string;
}
export interface GraphQLLicense {
name?: string;
url?: string;
identifier?: string;
}