GiftMessage
Contains the text of a gift message, its sender, and recipient
type GiftMessage = {
__typename?: 'GiftMessage'; /** Sender name */
from: Scalars['String']['output']; /** Gift message text */
message: Scalars['String']['output']; /** Recipient name */
to: Scalars['String']['output'];
};