Wishlist sharing functionality
Added an endpoint to share wish-list.
The updated schema looks in the following way:
type Mutation {
shareWishlist(input: ShareWishlistInput!): Boolean
}
type Query {
wishlist(sharing_code: ID): WishlistOutput
}
input ShareWishlistInput {
emails: [ID]!
message: String
}
extend type WishlistOutput {
creators_name: String
}