forked from Mattchewone/feathers-graphql-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfeathers-gen-specs.json
52 lines (52 loc) · 1.04 KB
/
feathers-gen-specs.json
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
{
"options": {
"ver": "1.0.0",
"inspectConflicts": false,
"semicolons": false,
"freeze": []
},
"app": {
"name": "feathers-graphql-demo",
"description": "Demo app",
"src": "src",
"packager": "npm@>= 3.0.0",
"providers": [
"rest",
"socketio"
]
},
"services": {
"posts": {
"name": "posts",
"nameSingular": "post",
"fileName": "posts",
"adapter": "mongoose",
"path": "/posts",
"isAuthEntity": false,
"graphql": true
},
"users": {
"name": "users",
"nameSingular": "user",
"fileName": "users",
"adapter": "mongoose",
"path": "/users",
"isAuthEntity": false,
"graphql": true
}
},
"connections": {
"mongoose": {
"database": "mongodb",
"adapter": "mongoose",
"connectionString": "mongodb://localhost:27017/feathers_graphql_demo"
}
},
"graphql": {
"path": "/graphql",
"strategy": "batchloaders",
"sqlInterface": null,
"requiresAuth": false,
"name": "graphql"
}
}