Type alias GetCollectionQuery
 
GetCollectionQuery: { 
    __typename?: "Query"; 
    collection?: { 
        __typename: "Collection"; 
        description?: string | null; 
        discriminator: string; 
        id: string; 
        items: { 
            __typename?: "CollectionItemConnection"; 
            totalCount: number; 
        }; 
        readMoreUrl?: string | null; 
        synopsis?: string | null; 
        title?: string | null; 
    } | null; 
}
Type declaration
- 
Optional__typename?: "Query"
- 
Optionalcollection?: {
 __typename: "Collection";
 description?: string | null;
 discriminator: string;
 id: string;
 items: {
 __typename?: "CollectionItemConnection";
 totalCount: number;
 };
 readMoreUrl?: string | null;
 synopsis?: string | null;
 title?: string | null;
 } | null