Skip to content

Wishlist sharing functionality

Compare
Choose a tag to compare
@alfredsgenkins alfredsgenkins released this 12 Jun 14:55
· 52 commits to master since this release
f3e8a08

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
}