-
Notifications
You must be signed in to change notification settings - Fork 4
/
stores.js
47 lines (45 loc) · 955 Bytes
/
stores.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
// Copyright Fauna, Inc.
// SPDX-License-Identifier: MIT-0
const fauna = require('faunadb')
const { Ref, Collection } = fauna.query
module.exports = [
{
ref: Ref(Collection('stores'), '301'),
ts: 1621412361760000,
data: {
name: 'DC Fruits',
address: {
street: '13 Pierstorff Drive',
city: 'Washington',
state: 'DC',
zipCode: '20220',
},
},
},
{
ref: Ref(Collection('stores'), '302'),
ts: 1621412361760000,
data: {
name: 'Party Supplies',
address: {
street: '7529 Capitalsaurus Court',
city: 'Washington',
state: 'DC',
zipCode: '20002',
},
},
},
{
ref: Ref(Collection('stores'), '303'),
ts: 1621412361760000,
data: {
name: 'Foggy Bottom Market',
address: {
street: '4 Florida Ave',
city: 'Washington',
state: 'DC',
zipCode: '20037',
},
},
},
]