Skip to content

Instantly share code, notes, and snippets.

@velotiotech
Created December 7, 2020 07:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save velotiotech/ba76742648e6e983fa81f59091b1b2d5 to your computer and use it in GitHub Desktop.
Save velotiotech/ba76742648e6e983fa81f59091b1b2d5 to your computer and use it in GitHub Desktop.
import { buildFederatedSchema } from '@apollo/federation';
import { ApolloServer, gql } from 'apollo-server';
import User from './datasources/models/User';
import mongoStore from './mongoStore';
const typeDefs = gql`
type User @key(fields: "id") {
id: ID!
username: String!
}
extend type Query {
users: [User]
user(id: ID!): User
}
extend type Mutation {
createUser(userPayload: UserPayload): User
}
input UserPayload {
username: String!
}
`;
const resolvers = {
Query: {
users: async () => {
const allUsers = await User.find({});
return allUsers;
},
user: async (_, { id }) => {
const currentUser = await User.findOne({ _id: id });
return currentUser;
},
},
User: {
__resolveReference: async (ref) => {
const currentUser = await User.findOne({ _id: ref.id });
return currentUser;
},
},
Mutation: {
createUser: async (_, { userPayload: { username } }) => {
const user = new User({ username });
const createdUser = await user.save();
return createdUser;
},
},
};
mongoStore();
const server = new ApolloServer({
schema: buildFederatedSchema([{ typeDefs, resolvers }]),
});
server.listen({ port: 4001 }).then(({ url }) => {
console.log(`User service ready at url: ${url}`);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment