-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathx.json
266 lines (266 loc) · 6.37 KB
/
x.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
{
"name": "mongojs",
"description": "MongoJS for Chiχ",
"version": "0.0.3",
"licences": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nodule/mongojs.git"
},
"dependencies": {
"mongojs": "latest"
},
"nodes": [
{
"name": "close",
"ns": "mongojs",
"description": "mongojs close",
"phrases": {
"active": "Closing database connection"
},
"ports": {
"input": {
"db": {
"type": "function",
"title": "mongojs db handle"
}
},
"output": {}
},
"env": "server",
"fn": "output = function() {\n $.db.close()\n}\n"
},
{
"name": "collection",
"ns": "mongojs",
"description": "mongojs collection",
"phrases": {
"active": "Opening the {{input.collection}} collection"
},
"ports": {
"input": {
"collection": {
"type": "string",
"title": "Collection",
"description": "The collection name for this database",
"required": true
},
"db": {
"type": "function",
"title": "Db Handle",
"description": "Expects the `db` port of the mongojs.db node",
"readonly": true,
"required": true
}
},
"output": {
"collection": {
"type": "function",
"title": "Db Collection handle",
"readonly": true
}
}
},
"env": "server",
"fn": "output = {\n collection: $.create($.db.collection($.collection))\n}\n"
},
{
"name": "db",
"ns": "mongojs",
"description": "mongojs database",
"phrases": {
"active": "Creating mongodb connection: {{input.in}}"
},
"ports": {
"input": {
"connection_string": {
"type": "string",
"title": "Connection String",
"description": "The connection string should follow the format described in [the mongo connection](http://docs.mongodb.org/manual/reference/connection-string/) string docs",
"require": true
}
},
"output": {
"db": {
"type": "function"
}
}
},
"dependencies": {
"npm": {
"mongojs": "latest"
}
},
"env": "server",
"fn": "output = {\n db: $.create(mongojs($.connection_string))\n}\n"
},
{
"name": "find",
"ns": "mongojs",
"description": "mongojs find",
"phrases": {
"active": "Performing find based on the specified criteria"
},
"ports": {
"input": {
"collection": {
"type": "function",
"title": "A mongojs.collection handle",
"required": true,
"readonly": true
},
"criteria": {
"type": "object",
"title": "A mongojs criteria JSON object",
"required": true
}
},
"output": {
"error": {
"title": "Error",
"type": "object"
},
"documents": {
"title": "Documents",
"type": "object"
}
}
},
"env": "server",
"fn": "output = [$.collection, 'find', $.criteria]\n"
},
{
"name": "findAll",
"ns": "mongojs",
"description": "MongoJS find all",
"phrases": {
"active": "Finding all documents"
},
"ports": {
"input": {
"collection": {
"type": "function",
"title": "A mongojs.collection handle",
"required": true,
"readonly": true
}
},
"output": {
"error": {
"title": "Error",
"type": "object"
},
"documents": {
"title": "Documents",
"type": "object"
}
}
},
"env": "server",
"fn": "output = [$.collection, 'find']\n"
},
{
"name": "insert",
"ns": "mongojs",
"description": "mongojs insert",
"phrases": {
"active": "Insering document into the collection"
},
"ports": {
"input": {
"collection": {
"type": "function",
"title": "a mongojs.collection handle",
"required": true,
"readonly": true
},
"document": {
"type": "object",
"title": "JSON document",
"required": true
}
},
"output": {
"error": {
"type": "object"
},
"docs": {
"type": "object"
},
"n": {
"type": "object"
}
}
},
"env": "server",
"fn": "output = [$.collection, 'insert', $.document]\n"
},
{
"name": "remove",
"ns": "mongojs",
"description": "mongojs remove",
"phrases": {
"active": "Removing document(s) based on the specified criteria"
},
"ports": {
"input": {
"collection": {
"type": "function"
},
"criteria": {
"type": "object"
}
},
"output": {
"success": {
"type": "boolean"
}
}
},
"env": "server",
"fn": "output = [$.collection, 'remove', $.criteria]\n"
},
{
"name": "update",
"ns": "mongojs",
"description": "mongojs update",
"phrases": {
"active": "Updating document"
},
"ports": {
"input": {
"collection": {
"type": "function",
"title": "a mongojs.collection handle",
"required": true,
"readonly": true
},
"selector": {
"type": "object",
"title": "Selector",
"required": true
},
"document": {
"type": "object",
"title": "JSON document",
"required": true
}
},
"output": {
"error": {
"type": "object"
},
"docs": {
"type": "object"
},
"n": {
"type": "object"
}
}
},
"env": "server",
"fn": "output = [$.collection, 'update', $.selector, $.document]\n"
}
],
"env": "server"
}