-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
48 lines (39 loc) · 1.51 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
// Import Apollo Server and graphql schema
const { ApolloServer } = require("apollo-server");
const { importSchema } = require("graphql-import");
// Import custom EtherDataSource
const EtherDataSource = require("./datasource/ethDatasource");
// Import schema
const typeDefs = importSchema("./schema.graphql");
// Load environment variables
require("dotenv").config();
// Define resolvers that call data source methods
const resolvers = {
Query: {
etherBalanceByAddress: (root, _args, { dataSources }) =>
// Call etherBalanceByAddress method on eth data source
dataSources.ethDataSource.etherBalanceByAddress(),
totalSupplyOfEther: (root, _args, { dataSources }) =>
// Call totalSupplyOfEther method on eth data source
dataSources.ethDataSource.totalSupplyOfEther(),
latestEthereumPrice: (root, _args, { dataSources }) =>
// Call getLatestEthereumPrice method on eth data source
dataSources.ethDataSource.getLatestEthereumPrice(),
blockConfirmationTime: (root, _args, { dataSources }) =>
// Call getBlockConfirmationTime method on eth data source
dataSources.ethDataSource.getBlockConfirmationTime(),
},
};
// Create ApolloServer instance
const server = new ApolloServer({
typeDefs,
resolvers,
dataSources: () => ({
// Instantiate EtherDataSource
ethDataSource: new EtherDataSource(),
}),
});
// Start server
server.listen("9000").then(({ url }) => {
console.log(`🚀 Server ready at ${url}`);
});