-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
71 lines (59 loc) · 1.2 KB
/
index.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
var express = require('express');
var graphQL = require('graphql');
var expressGraphQL = require('express-graphql');
var usuarios = [{
id: 1,
nome: 'Alefe',
idade: 22,
}, {
id: 2,
nome: 'Rodrigo',
idade: 32,
}, {
id: 3,
nome: 'Reinaldo',
idade: 42,
}];
var schema = graphQL.buildSchema(`
type User {
id: Int
nome: String
idade: Int
}
type Query {
users: [User],
user(id: Int!): User
}
type Mutation {
addUser(nome: String!, idade: Int!): User
}
`);
var getUsers = function () {
return usuarios;
}
var getUser = function (args) {
return usuarios.find(u => u.id === args.id);
}
var addUser = function (args) {
var novoUsuario = {
id: Math.floor(Math.random() * 1000),
nome: args.nome,
idade: args.idade,
};
usuarios.push(novoUsuario);
return novoUsuario;
}
var root = {
user: getUser,
users: getUsers,
addUser: addUser,
};
var app = express();
app.use('/graphql', expressGraphQL({
schema: schema,
rootValue: root,
graphiql: true,
}));
app.listen(4000, function () {
console.log('Servidor iniciado em: http://localhost:4000');
});