-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathseed.js
40 lines (38 loc) · 1.37 KB
/
seed.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
const fetch = require('node-fetch');
const { client, query } = require('./src/functions/graphql/db');
const q = query;
const potterEndPoint = `https://www.potterapi.com/v1/characters/?key=${process.env.POTTER_KEY}`;
fetch(potterEndPoint)
.then(res => res.json())
.then(res => {
console.log({res});
const characterArray = res.map((char, index) => ({
_id: char._id,
name: char.name,
house: char.house,
patronus: char.patronus,
bloodStatus: char.blood,
role: char.role,
school: char.school,
deathEater: char.deathEater,
dumbledoresArmy: char.dumbledoresArmy,
orderOfThePheonix: char.orderOfThePheonix,
ministryOfMagic: char.ministryOfMagic,
alias: char.alias,
wand: char.wand,
boggart: char.boggart,
animagus: char.animagus
}));
client
.query(
q.Map(
characterArray,
q.Lambda(
'character',
q.Create(q.Collection('Character'), {data: q.Var('character')})
)
)
)
.then(console.log('Wrote potter characters to FaunaDB'))
.catch(err => console.log('Failed to add characters to FaunaDB', err));
})