This project demonstrates how to set and get cookies in a GraphQL server using graphql-yoga
# Install dependencies
npm install
# Start server
npm start
mutation SetCookie {
setCookie(name: "session", value: "eyjh.....")
}
query GetCookie {
cookie(name: "session")
}
This project is licensed under the MIT License - see the LICENSE file for details