Loren ☺️
Loren ☺️
Based on the current README, I might decide only to use accountsjs if I want to talk over a websocket. What does accountsjs do for me that passport doesn't? What...
I'm wondering whether it would help reduce the necessity of maintaining / adding accounts-js database adapters like `@accounts/mongo` if we used an abstraction library like http://fortune.js.org/
I think this type of error should not be classified as an internal server error:  It should have `code: "UNAUTHENTICATED"`, which you get by `throw new AuthenticationError()`. There's also...

The below date should be in the future, but it is in the past. Similarly, `launchesPast` should include launches that occurred this year. ```gql { launchNext { launch_date_local } }...
Something like ``` CollectionHooks.after.remove: function (userId, doc) { // ... }); ``` that runs after a doc is removed from any collection. Use case: http://stackoverflow.com/questions/29638910/how-can-you-log-all-mongo-write-commands
After a user is created, I want the client's `Accounts.createUser` call to return, and then I want to add something to the user's record that is fetched with a HTTP...
I believe that according to https://github.com/auth0/express-jwt/pull/47 I should not get this error? ``` UnauthorizedError: jwt expired at /Users/me/gh/api-model/node_modules/express-jwt/lib/index.js:102:22 at /Users/me/gh/api-model/node_modules/jsonwebtoken/verify.js:27:18 ``` Code: ```js import jwt from 'express-jwt' expressApp.use( '/graphql', jwt({...
I'd like to be able to set a default header and then override it to nonexistance. When I do the below, a header with null shows up, versus the header...
Grown used to this, which works in GraphiQL but not this ☺️