ModelField: {
    association?: ModelAssociation;
    attributes?: ModelAttributes[];
    isArray: boolean;
    isArrayNullable?: boolean;
    isReadOnly?: boolean;
    isRequired?: boolean;
    name: string;
    type: keyof Omit<typeof GraphQLScalarType, "getJSType" | "getValidationFunction"> | ModelFieldType | NonModelFieldType | EnumFieldType;
}

Type declaration