forked from Hganavak/graphql-server-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex-auth.js
92 lines (76 loc) · 1.87 KB
/
index-auth.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
const { ApolloServer, gql } = require('apollo-server');
const { AuthDirective } = require('./auth-directive');
const { makeExecutableSchema } = require('graphql-tools');
const articles = [
{
body: 'Gonna teach you some stuff',
isPublic: true
},
{
body: 'This is all top secret',
isPublic: false
},
];
const contentItems = [
{
title: 'Sams Latex Workshop',
summary: 'A workshop about LaTeX',
article: articles[0]
},
{
title: 'Top Secret NASA Project',
summary: 'A top secret article about NASA',
article: articles[1]
}
]
// Define schema (collection of type definitions)
const typeDefs = gql`
directive @auth(
requires: Role = USER,
) on OBJECT
enum Role {
USER
STAFF
}
type ContentItem {
title: String
summary: String
article: Article
}
type Article @auth {
body: String
isPublic: Boolean
}
type Query {
contentItems: [ContentItem]
articles: [Article]
}
`;
// Define resolvers (define the technique for fetching the types defined in our schema)
const resolvers = {
Query: {
contentItems: (parent, args, context) => { return contentItems },
articles: (parent, args, context) => { return articles }
},
};
// The ApolloServer constructor requires two parameters: your schema
// definition and your set of resolvers.
const schema = makeExecutableSchema({
typeDefs,
resolvers,
schemaDirectives: {
auth: AuthDirective
}
});
const server = new ApolloServer({
schema,
context: ({ req }) => {
user = { upi: 'skav012' }; // Get session here
user = null;
return { user };
}
});
// The 'listen' method launches a web server.
server.listen().then(({ url }) => {
console.log(`🚀 Server ready at ${url}`);
});