import { Field } from '.'; /** * Reperesent GraphQL object type */ export interface ObjectType { name: string; fields: Field[]; isEntity: boolean; isVariant: boolean; description?: string; isInterface?: boolean; interfaces?: ObjectType[]; implementers?: string[]; }