export interface ICollection { archived: boolean; changed: boolean; changedAt: boolean; encodedAt: string; encoding: boolean; encodingAt: boolean; id: string; index: string; searchableFields: ISearchableField[]; syncAt: string; syncedAt: string; syncing: boolean; syncingAt: string; name: string; } export interface ISearchableField { model: string; field: string; } export interface IListCollectionResponse { project: { project: { collections: ICollection[]; } } } export interface ICreateCollectionResponse { createCollection: { collection: ICollection; } }