keymaker 0.0.7 → 0.0.8
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +71 -11
- data/Rakefile +1 -1
- data/keymaker.gemspec +46 -15
- data/lib/keymaker.rb +25 -12
- data/lib/keymaker/configuration.rb +4 -0
- data/lib/keymaker/errors.rb +22 -0
- data/lib/keymaker/match_method.rb +24 -0
- data/lib/keymaker/request.rb +2 -1
- data/lib/keymaker/{add_node_to_index_request.rb → requests/add_node_to_index_request.rb} +0 -0
- data/lib/keymaker/requests/batch_get_nodes_request.rb +24 -0
- data/lib/keymaker/requests/batch_request.rb +18 -0
- data/lib/keymaker/{create_node_request.rb → requests/create_node_request.rb} +0 -0
- data/lib/keymaker/{create_relationship_request.rb → requests/create_relationship_request.rb} +0 -0
- data/lib/keymaker/requests/delete_node_request.rb +18 -0
- data/lib/keymaker/{delete_relationship_request.rb → requests/delete_relationship_request.rb} +0 -0
- data/lib/keymaker/{execute_cypher_request.rb → requests/execute_cypher_request.rb} +0 -0
- data/lib/keymaker/{execute_gremlin_request.rb → requests/execute_gremlin_request.rb} +0 -0
- data/lib/keymaker/requests/get_node_request.rb +16 -0
- data/lib/keymaker/requests/get_relationship_types_request.rb +18 -0
- data/lib/keymaker/{path_traverse_request.rb → requests/path_traverse_request.rb} +0 -0
- data/lib/keymaker/{remove_node_from_index_request.rb → requests/remove_node_from_index_request.rb} +0 -0
- data/lib/keymaker/requests/service_root_request.rb +11 -0
- data/lib/keymaker/{update_node_properties_request.rb → requests/update_node_properties_request.rb} +0 -0
- data/lib/keymaker/response.rb +8 -1
- data/lib/keymaker/service.rb +17 -43
- data/spec/cassettes/Keymaker_AddNodeToIndexRequest/returns_a_201_status_code.yml +204 -0
- data/spec/cassettes/Keymaker_AddNodeToIndexRequest/returns_application/json.yml +204 -0
- data/spec/cassettes/Keymaker_AddNodeToIndexRequest/returns_the_Neo4j_REST_API_starting_point_response_request.yml +204 -0
- data/spec/cassettes/Keymaker_BatchRequest/when_a_resource_is_not_found/raises_BatchRequestError.yml +120 -0
- data/spec/cassettes/Keymaker_BatchRequest/when_to_and_method_are_not_set/raises_BatchRequestError.yml +106 -0
- data/spec/cassettes/Keymaker_BatchRequest/with_valid_options/returns_a_200_status_code.yml +129 -0
- data/spec/cassettes/Keymaker_BatchRequest/with_valid_options/runs_the_commands_and_returns_their_respective_results.yml +129 -0
- data/spec/cassettes/Keymaker_GetNodeRequest/with_a_non-existent_node_id/raises_ResourceNotFound.yml +101 -0
- data/spec/cassettes/Keymaker_GetNodeRequest/with_an_empty_node_id/raises_ClientError.yml +111 -0
- data/spec/cassettes/Keymaker_GetRelationshipTypesRequest/with_existing_relationships/returns_a_unique_array_of_relationship_types.yml +220 -0
- data/spec/cassettes/Keymaker_ServiceRootRequest/returns_a_200_status_code.yml +105 -0
- data/spec/cassettes/Keymaker_ServiceRootRequest/returns_application/json.yml +105 -0
- data/spec/cassettes/Keymaker_ServiceRootRequest/returns_the_Neo4j_REST_API_starting_point_response_request.yml +105 -0
- data/spec/{keymaker/configuration_spec.rb → configuration_spec.rb} +0 -0
- data/spec/keymaker/requests/add_node_to_index_request_spec.rb +41 -0
- data/spec/keymaker/requests/batch_get_nodes_request_spec.rb +23 -0
- data/spec/keymaker/requests/batch_request_spec.rb +115 -0
- data/spec/keymaker/requests/delete_node_request_spec.rb +37 -0
- data/spec/keymaker/requests/get_node_request_spec.rb +24 -0
- data/spec/keymaker/requests/get_relationship_types_request_spec.rb +17 -0
- data/spec/keymaker/requests/service_root_request_spec.rb +35 -0
- data/spec/{keymaker/service_spec.rb → service_spec.rb} +0 -0
- data/spec/support/vcr.rb +8 -0
- metadata +116 -19
- data/lib/keymaker/batch_get_nodes_request.rb +0 -19
@@ -0,0 +1,129 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: post
|
5
|
+
uri: http://localhost:7477/db/data/ext/GremlinPlugin/graphdb/execute_script
|
6
|
+
body:
|
7
|
+
encoding: UTF-8
|
8
|
+
string: ! '{"script":"g.clear();g.V()"}'
|
9
|
+
headers:
|
10
|
+
Content-Type:
|
11
|
+
- application/json
|
12
|
+
response:
|
13
|
+
status:
|
14
|
+
code: 200
|
15
|
+
message: !!null
|
16
|
+
headers:
|
17
|
+
content-length:
|
18
|
+
- '3'
|
19
|
+
content-encoding:
|
20
|
+
- UTF-8
|
21
|
+
content-type:
|
22
|
+
- application/json
|
23
|
+
access-control-allow-origin:
|
24
|
+
- ! '*'
|
25
|
+
connection:
|
26
|
+
- close
|
27
|
+
server:
|
28
|
+
- Jetty(6.1.25)
|
29
|
+
body:
|
30
|
+
encoding: US-ASCII
|
31
|
+
string: ! '[ ]'
|
32
|
+
http_version: !!null
|
33
|
+
recorded_at: Tue, 10 Jul 2012 02:33:49 GMT
|
34
|
+
- request:
|
35
|
+
method: delete
|
36
|
+
uri: http://localhost:7477/db/data/index/node/users
|
37
|
+
body:
|
38
|
+
encoding: US-ASCII
|
39
|
+
string: ''
|
40
|
+
headers: {}
|
41
|
+
response:
|
42
|
+
status:
|
43
|
+
code: 404
|
44
|
+
message: !!null
|
45
|
+
headers:
|
46
|
+
content-length:
|
47
|
+
- '422'
|
48
|
+
content-encoding:
|
49
|
+
- UTF-8
|
50
|
+
content-type:
|
51
|
+
- application/json
|
52
|
+
access-control-allow-origin:
|
53
|
+
- ! '*'
|
54
|
+
connection:
|
55
|
+
- close
|
56
|
+
server:
|
57
|
+
- Jetty(6.1.25)
|
58
|
+
body:
|
59
|
+
encoding: US-ASCII
|
60
|
+
string: ! "{\n \"message\" : \"No node index named 'users'.\",\n \"exception\"
|
61
|
+
: \"NotFoundException\",\n \"stacktrace\" : [ \"org.neo4j.server.rest.web.DatabaseActions.removeNodeIndex(DatabaseActions.java:420)\",
|
62
|
+
\"org.neo4j.server.rest.web.RestfulGraphDatabase.deleteNodeIndex(RestfulGraphDatabase.java:729)\",
|
63
|
+
\"java.lang.reflect.Method.invoke(Method.java:597)\", \"org.neo4j.server.statistic.StatisticFilter.doFilter(StatisticFilter.java:62)\"
|
64
|
+
]\n}"
|
65
|
+
http_version: !!null
|
66
|
+
recorded_at: Tue, 10 Jul 2012 02:33:49 GMT
|
67
|
+
- request:
|
68
|
+
method: post
|
69
|
+
uri: http://localhost:7477/db/data/batch
|
70
|
+
body:
|
71
|
+
encoding: UTF-8
|
72
|
+
string: ! '[{"method":"POST","to":"/node","id":0,"body":{"name":"John Connor"}},{"method":"POST","to":"/node","id":1,"body":{"name":"Sarah
|
73
|
+
Connor"}},{"method":"POST","to":"{0}/relationships","id":3,"body":{"to":"{1}","data":{"since":"1985"},"type":"knows"}}]'
|
74
|
+
headers:
|
75
|
+
Content-Type:
|
76
|
+
- application/json
|
77
|
+
response:
|
78
|
+
status:
|
79
|
+
code: 200
|
80
|
+
message: !!null
|
81
|
+
headers:
|
82
|
+
content-encoding:
|
83
|
+
- UTF-8
|
84
|
+
content-type:
|
85
|
+
- application/json
|
86
|
+
access-control-allow-origin:
|
87
|
+
- ! '*'
|
88
|
+
connection:
|
89
|
+
- close
|
90
|
+
server:
|
91
|
+
- Jetty(6.1.25)
|
92
|
+
body:
|
93
|
+
encoding: US-ASCII
|
94
|
+
string: ! "[{\"id\":0,\"location\":\"http://localhost:7477/db/data/node/26\",\"body\":{\n
|
95
|
+
\ \"extensions\" : {\n },\n \"paged_traverse\" : \"http://localhost:7477/db/data/node/26/paged/traverse/{returnType}{?pageSize,leaseTime}\",\n
|
96
|
+
\ \"outgoing_relationships\" : \"http://localhost:7477/db/data/node/26/relationships/out\",\n
|
97
|
+
\ \"traverse\" : \"http://localhost:7477/db/data/node/26/traverse/{returnType}\",\n
|
98
|
+
\ \"all_typed_relationships\" : \"http://localhost:7477/db/data/node/26/relationships/all/{-list|&|types}\",\n
|
99
|
+
\ \"property\" : \"http://localhost:7477/db/data/node/26/properties/{key}\",\n
|
100
|
+
\ \"all_relationships\" : \"http://localhost:7477/db/data/node/26/relationships/all\",\n
|
101
|
+
\ \"self\" : \"http://localhost:7477/db/data/node/26\",\n \"properties\"
|
102
|
+
: \"http://localhost:7477/db/data/node/26/properties\",\n \"outgoing_typed_relationships\"
|
103
|
+
: \"http://localhost:7477/db/data/node/26/relationships/out/{-list|&|types}\",\n
|
104
|
+
\ \"incoming_relationships\" : \"http://localhost:7477/db/data/node/26/relationships/in\",\n
|
105
|
+
\ \"incoming_typed_relationships\" : \"http://localhost:7477/db/data/node/26/relationships/in/{-list|&|types}\",\n
|
106
|
+
\ \"create_relationship\" : \"http://localhost:7477/db/data/node/26/relationships\",\n
|
107
|
+
\ \"data\" : {\n \"name\" : \"John Connor\"\n }\n},\"from\":\"/node\"},{\"id\":1,\"location\":\"http://localhost:7477/db/data/node/27\",\"body\":{\n
|
108
|
+
\ \"extensions\" : {\n },\n \"paged_traverse\" : \"http://localhost:7477/db/data/node/27/paged/traverse/{returnType}{?pageSize,leaseTime}\",\n
|
109
|
+
\ \"outgoing_relationships\" : \"http://localhost:7477/db/data/node/27/relationships/out\",\n
|
110
|
+
\ \"traverse\" : \"http://localhost:7477/db/data/node/27/traverse/{returnType}\",\n
|
111
|
+
\ \"all_typed_relationships\" : \"http://localhost:7477/db/data/node/27/relationships/all/{-list|&|types}\",\n
|
112
|
+
\ \"property\" : \"http://localhost:7477/db/data/node/27/properties/{key}\",\n
|
113
|
+
\ \"all_relationships\" : \"http://localhost:7477/db/data/node/27/relationships/all\",\n
|
114
|
+
\ \"self\" : \"http://localhost:7477/db/data/node/27\",\n \"properties\"
|
115
|
+
: \"http://localhost:7477/db/data/node/27/properties\",\n \"outgoing_typed_relationships\"
|
116
|
+
: \"http://localhost:7477/db/data/node/27/relationships/out/{-list|&|types}\",\n
|
117
|
+
\ \"incoming_relationships\" : \"http://localhost:7477/db/data/node/27/relationships/in\",\n
|
118
|
+
\ \"incoming_typed_relationships\" : \"http://localhost:7477/db/data/node/27/relationships/in/{-list|&|types}\",\n
|
119
|
+
\ \"create_relationship\" : \"http://localhost:7477/db/data/node/27/relationships\",\n
|
120
|
+
\ \"data\" : {\n \"name\" : \"Sarah Connor\"\n }\n},\"from\":\"/node\"},{\"id\":3,\"location\":\"http://localhost:7477/db/data/relationship/2\",\"body\":{\n
|
121
|
+
\ \"extensions\" : {\n },\n \"start\" : \"http://localhost:7477/db/data/node/26\",\n
|
122
|
+
\ \"property\" : \"http://localhost:7477/db/data/relationship/2/properties/{key}\",\n
|
123
|
+
\ \"self\" : \"http://localhost:7477/db/data/relationship/2\",\n \"properties\"
|
124
|
+
: \"http://localhost:7477/db/data/relationship/2/properties\",\n \"type\"
|
125
|
+
: \"knows\",\n \"end\" : \"http://localhost:7477/db/data/node/27\",\n \"data\"
|
126
|
+
: {\n \"since\" : \"1985\"\n }\n},\"from\":\"http://localhost:7477/db/data/node/26/relationships\"}]"
|
127
|
+
http_version: !!null
|
128
|
+
recorded_at: Tue, 10 Jul 2012 02:33:49 GMT
|
129
|
+
recorded_with: VCR 2.2.2
|
data/spec/cassettes/Keymaker_GetNodeRequest/with_a_non-existent_node_id/raises_ResourceNotFound.yml
ADDED
@@ -0,0 +1,101 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: post
|
5
|
+
uri: http://localhost:7477/db/data/ext/GremlinPlugin/graphdb/execute_script
|
6
|
+
body:
|
7
|
+
encoding: UTF-8
|
8
|
+
string: ! '{"script":"g.clear();g.V()"}'
|
9
|
+
headers:
|
10
|
+
Content-Type:
|
11
|
+
- application/json
|
12
|
+
response:
|
13
|
+
status:
|
14
|
+
code: 200
|
15
|
+
message: !!null
|
16
|
+
headers:
|
17
|
+
content-length:
|
18
|
+
- '3'
|
19
|
+
content-encoding:
|
20
|
+
- UTF-8
|
21
|
+
content-type:
|
22
|
+
- application/json
|
23
|
+
access-control-allow-origin:
|
24
|
+
- ! '*'
|
25
|
+
connection:
|
26
|
+
- close
|
27
|
+
server:
|
28
|
+
- Jetty(6.1.25)
|
29
|
+
body:
|
30
|
+
encoding: US-ASCII
|
31
|
+
string: ! '[ ]'
|
32
|
+
http_version: !!null
|
33
|
+
recorded_at: Thu, 12 Jul 2012 02:10:58 GMT
|
34
|
+
- request:
|
35
|
+
method: delete
|
36
|
+
uri: http://localhost:7477/db/data/index/node/users
|
37
|
+
body:
|
38
|
+
encoding: US-ASCII
|
39
|
+
string: ''
|
40
|
+
headers: {}
|
41
|
+
response:
|
42
|
+
status:
|
43
|
+
code: 404
|
44
|
+
message: !!null
|
45
|
+
headers:
|
46
|
+
content-length:
|
47
|
+
- '422'
|
48
|
+
content-encoding:
|
49
|
+
- UTF-8
|
50
|
+
content-type:
|
51
|
+
- application/json
|
52
|
+
access-control-allow-origin:
|
53
|
+
- ! '*'
|
54
|
+
connection:
|
55
|
+
- close
|
56
|
+
server:
|
57
|
+
- Jetty(6.1.25)
|
58
|
+
body:
|
59
|
+
encoding: US-ASCII
|
60
|
+
string: ! "{\n \"message\" : \"No node index named 'users'.\",\n \"exception\"
|
61
|
+
: \"NotFoundException\",\n \"stacktrace\" : [ \"org.neo4j.server.rest.web.DatabaseActions.removeNodeIndex(DatabaseActions.java:420)\",
|
62
|
+
\"org.neo4j.server.rest.web.RestfulGraphDatabase.deleteNodeIndex(RestfulGraphDatabase.java:729)\",
|
63
|
+
\"java.lang.reflect.Method.invoke(Method.java:597)\", \"org.neo4j.server.statistic.StatisticFilter.doFilter(StatisticFilter.java:62)\"
|
64
|
+
]\n}"
|
65
|
+
http_version: !!null
|
66
|
+
recorded_at: Thu, 12 Jul 2012 02:10:58 GMT
|
67
|
+
- request:
|
68
|
+
method: get
|
69
|
+
uri: http://localhost:7477/db/data/node/42
|
70
|
+
body:
|
71
|
+
encoding: US-ASCII
|
72
|
+
string: ''
|
73
|
+
headers: {}
|
74
|
+
response:
|
75
|
+
status:
|
76
|
+
code: 404
|
77
|
+
message: !!null
|
78
|
+
headers:
|
79
|
+
content-length:
|
80
|
+
- '500'
|
81
|
+
content-encoding:
|
82
|
+
- UTF-8
|
83
|
+
content-type:
|
84
|
+
- application/json
|
85
|
+
access-control-allow-origin:
|
86
|
+
- ! '*'
|
87
|
+
connection:
|
88
|
+
- close
|
89
|
+
server:
|
90
|
+
- Jetty(6.1.25)
|
91
|
+
body:
|
92
|
+
encoding: US-ASCII
|
93
|
+
string: ! "{\n \"message\" : \"Cannot find node with id [42] in database.\",\n
|
94
|
+
\ \"exception\" : \"NodeNotFoundException\",\n \"stacktrace\" : [ \"org.neo4j.server.rest.web.DatabaseActions.node(DatabaseActions.java:123)\",
|
95
|
+
\"org.neo4j.server.rest.web.DatabaseActions.getNode(DatabaseActions.java:234)\",
|
96
|
+
\"org.neo4j.server.rest.web.RestfulGraphDatabase.getNode(RestfulGraphDatabase.java:225)\",
|
97
|
+
\"java.lang.reflect.Method.invoke(Method.java:597)\", \"org.neo4j.server.statistic.StatisticFilter.doFilter(StatisticFilter.java:62)\"
|
98
|
+
]\n}"
|
99
|
+
http_version: !!null
|
100
|
+
recorded_at: Thu, 12 Jul 2012 02:10:58 GMT
|
101
|
+
recorded_with: VCR 2.2.2
|
@@ -0,0 +1,111 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: post
|
5
|
+
uri: http://localhost:7477/db/data/ext/GremlinPlugin/graphdb/execute_script
|
6
|
+
body:
|
7
|
+
encoding: UTF-8
|
8
|
+
string: ! '{"script":"g.clear();g.V()"}'
|
9
|
+
headers:
|
10
|
+
Content-Type:
|
11
|
+
- application/json
|
12
|
+
response:
|
13
|
+
status:
|
14
|
+
code: 200
|
15
|
+
message: !!null
|
16
|
+
headers:
|
17
|
+
content-length:
|
18
|
+
- '3'
|
19
|
+
content-encoding:
|
20
|
+
- UTF-8
|
21
|
+
content-type:
|
22
|
+
- application/json
|
23
|
+
access-control-allow-origin:
|
24
|
+
- ! '*'
|
25
|
+
connection:
|
26
|
+
- close
|
27
|
+
server:
|
28
|
+
- Jetty(6.1.25)
|
29
|
+
body:
|
30
|
+
encoding: US-ASCII
|
31
|
+
string: ! '[ ]'
|
32
|
+
http_version: !!null
|
33
|
+
recorded_at: Thu, 12 Jul 2012 02:10:58 GMT
|
34
|
+
- request:
|
35
|
+
method: delete
|
36
|
+
uri: http://localhost:7477/db/data/index/node/users
|
37
|
+
body:
|
38
|
+
encoding: US-ASCII
|
39
|
+
string: ''
|
40
|
+
headers: {}
|
41
|
+
response:
|
42
|
+
status:
|
43
|
+
code: 404
|
44
|
+
message: !!null
|
45
|
+
headers:
|
46
|
+
content-length:
|
47
|
+
- '422'
|
48
|
+
content-encoding:
|
49
|
+
- UTF-8
|
50
|
+
content-type:
|
51
|
+
- application/json
|
52
|
+
access-control-allow-origin:
|
53
|
+
- ! '*'
|
54
|
+
connection:
|
55
|
+
- close
|
56
|
+
server:
|
57
|
+
- Jetty(6.1.25)
|
58
|
+
body:
|
59
|
+
encoding: US-ASCII
|
60
|
+
string: ! "{\n \"message\" : \"No node index named 'users'.\",\n \"exception\"
|
61
|
+
: \"NotFoundException\",\n \"stacktrace\" : [ \"org.neo4j.server.rest.web.DatabaseActions.removeNodeIndex(DatabaseActions.java:420)\",
|
62
|
+
\"org.neo4j.server.rest.web.RestfulGraphDatabase.deleteNodeIndex(RestfulGraphDatabase.java:729)\",
|
63
|
+
\"java.lang.reflect.Method.invoke(Method.java:597)\", \"org.neo4j.server.statistic.StatisticFilter.doFilter(StatisticFilter.java:62)\"
|
64
|
+
]\n}"
|
65
|
+
http_version: !!null
|
66
|
+
recorded_at: Thu, 12 Jul 2012 02:10:58 GMT
|
67
|
+
- request:
|
68
|
+
method: get
|
69
|
+
uri: http://localhost:7477/db/data/node/
|
70
|
+
body:
|
71
|
+
encoding: US-ASCII
|
72
|
+
string: ''
|
73
|
+
headers: {}
|
74
|
+
response:
|
75
|
+
status:
|
76
|
+
code: 405
|
77
|
+
message: !!null
|
78
|
+
headers:
|
79
|
+
allow:
|
80
|
+
- POST,OPTIONS
|
81
|
+
access-control-allow-origin:
|
82
|
+
- ! '*'
|
83
|
+
content-type:
|
84
|
+
- text/html; charset=iso-8859-1
|
85
|
+
cache-control:
|
86
|
+
- must-revalidate,no-cache,no-store
|
87
|
+
content-length:
|
88
|
+
- '1396'
|
89
|
+
connection:
|
90
|
+
- close
|
91
|
+
server:
|
92
|
+
- Jetty(6.1.25)
|
93
|
+
body:
|
94
|
+
encoding: US-ASCII
|
95
|
+
string: ! "<html>\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/html;
|
96
|
+
charset=ISO-8859-1\"/>\n<title>Error 405 Method Not Allowed</title>\n</head>\n<body><h2>HTTP
|
97
|
+
ERROR 405</h2>\n<p>Problem accessing /db/data/node/. Reason:\n<pre> Method
|
98
|
+
Not Allowed</pre></p><hr /><i><small>Powered by Jetty://</small></i><br/>
|
99
|
+
\ \n<br/> \n<br/>
|
100
|
+
\ \n<br/> \n<br/>
|
101
|
+
\ \n<br/> \n<br/>
|
102
|
+
\ \n<br/> \n<br/>
|
103
|
+
\ \n<br/> \n<br/>
|
104
|
+
\ \n<br/> \n<br/>
|
105
|
+
\ \n<br/> \n<br/>
|
106
|
+
\ \n<br/> \n<br/>
|
107
|
+
\ \n<br/> \n<br/>
|
108
|
+
\ \n<br/> \n\n</body>\n</html>\n"
|
109
|
+
http_version: !!null
|
110
|
+
recorded_at: Thu, 12 Jul 2012 02:10:58 GMT
|
111
|
+
recorded_with: VCR 2.2.2
|
@@ -0,0 +1,220 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: post
|
5
|
+
uri: http://localhost:7477/db/data/ext/GremlinPlugin/graphdb/execute_script
|
6
|
+
body:
|
7
|
+
encoding: UTF-8
|
8
|
+
string: ! '{"script":"g.clear();g.V()"}'
|
9
|
+
headers:
|
10
|
+
Content-Type:
|
11
|
+
- application/json
|
12
|
+
response:
|
13
|
+
status:
|
14
|
+
code: 200
|
15
|
+
message: !!null
|
16
|
+
headers:
|
17
|
+
content-length:
|
18
|
+
- '3'
|
19
|
+
content-encoding:
|
20
|
+
- UTF-8
|
21
|
+
content-type:
|
22
|
+
- application/json
|
23
|
+
access-control-allow-origin:
|
24
|
+
- ! '*'
|
25
|
+
connection:
|
26
|
+
- close
|
27
|
+
server:
|
28
|
+
- Jetty(6.1.25)
|
29
|
+
body:
|
30
|
+
encoding: US-ASCII
|
31
|
+
string: ! '[ ]'
|
32
|
+
http_version: !!null
|
33
|
+
recorded_at: Tue, 17 Jul 2012 12:02:39 GMT
|
34
|
+
- request:
|
35
|
+
method: delete
|
36
|
+
uri: http://localhost:7477/db/data/index/node/users
|
37
|
+
body:
|
38
|
+
encoding: US-ASCII
|
39
|
+
string: ''
|
40
|
+
headers: {}
|
41
|
+
response:
|
42
|
+
status:
|
43
|
+
code: 404
|
44
|
+
message: !!null
|
45
|
+
headers:
|
46
|
+
content-length:
|
47
|
+
- '422'
|
48
|
+
content-encoding:
|
49
|
+
- UTF-8
|
50
|
+
content-type:
|
51
|
+
- application/json
|
52
|
+
access-control-allow-origin:
|
53
|
+
- ! '*'
|
54
|
+
connection:
|
55
|
+
- close
|
56
|
+
server:
|
57
|
+
- Jetty(6.1.25)
|
58
|
+
body:
|
59
|
+
encoding: US-ASCII
|
60
|
+
string: ! "{\n \"message\" : \"No node index named 'users'.\",\n \"exception\"
|
61
|
+
: \"NotFoundException\",\n \"stacktrace\" : [ \"org.neo4j.server.rest.web.DatabaseActions.removeNodeIndex(DatabaseActions.java:420)\",
|
62
|
+
\"org.neo4j.server.rest.web.RestfulGraphDatabase.deleteNodeIndex(RestfulGraphDatabase.java:729)\",
|
63
|
+
\"java.lang.reflect.Method.invoke(Method.java:597)\", \"org.neo4j.server.statistic.StatisticFilter.doFilter(StatisticFilter.java:62)\"
|
64
|
+
]\n}"
|
65
|
+
http_version: !!null
|
66
|
+
recorded_at: Tue, 17 Jul 2012 12:02:39 GMT
|
67
|
+
- request:
|
68
|
+
method: post
|
69
|
+
uri: http://localhost:7477/db/data/node
|
70
|
+
body:
|
71
|
+
encoding: UTF-8
|
72
|
+
string: ! '{"email":"john@resistance.net"}'
|
73
|
+
headers:
|
74
|
+
Content-Type:
|
75
|
+
- application/json
|
76
|
+
response:
|
77
|
+
status:
|
78
|
+
code: 201
|
79
|
+
message: !!null
|
80
|
+
headers:
|
81
|
+
content-length:
|
82
|
+
- '1138'
|
83
|
+
location:
|
84
|
+
- http://localhost:7477/db/data/node/592
|
85
|
+
content-encoding:
|
86
|
+
- UTF-8
|
87
|
+
content-type:
|
88
|
+
- application/json
|
89
|
+
access-control-allow-origin:
|
90
|
+
- ! '*'
|
91
|
+
connection:
|
92
|
+
- close
|
93
|
+
server:
|
94
|
+
- Jetty(6.1.25)
|
95
|
+
body:
|
96
|
+
encoding: US-ASCII
|
97
|
+
string: ! "{\n \"extensions\" : {\n },\n \"paged_traverse\" : \"http://localhost:7477/db/data/node/592/paged/traverse/{returnType}{?pageSize,leaseTime}\",\n
|
98
|
+
\ \"outgoing_relationships\" : \"http://localhost:7477/db/data/node/592/relationships/out\",\n
|
99
|
+
\ \"traverse\" : \"http://localhost:7477/db/data/node/592/traverse/{returnType}\",\n
|
100
|
+
\ \"all_typed_relationships\" : \"http://localhost:7477/db/data/node/592/relationships/all/{-list|&|types}\",\n
|
101
|
+
\ \"property\" : \"http://localhost:7477/db/data/node/592/properties/{key}\",\n
|
102
|
+
\ \"all_relationships\" : \"http://localhost:7477/db/data/node/592/relationships/all\",\n
|
103
|
+
\ \"self\" : \"http://localhost:7477/db/data/node/592\",\n \"properties\"
|
104
|
+
: \"http://localhost:7477/db/data/node/592/properties\",\n \"outgoing_typed_relationships\"
|
105
|
+
: \"http://localhost:7477/db/data/node/592/relationships/out/{-list|&|types}\",\n
|
106
|
+
\ \"incoming_relationships\" : \"http://localhost:7477/db/data/node/592/relationships/in\",\n
|
107
|
+
\ \"incoming_typed_relationships\" : \"http://localhost:7477/db/data/node/592/relationships/in/{-list|&|types}\",\n
|
108
|
+
\ \"create_relationship\" : \"http://localhost:7477/db/data/node/592/relationships\",\n
|
109
|
+
\ \"data\" : {\n \"email\" : \"john@resistance.net\"\n }\n}"
|
110
|
+
http_version: !!null
|
111
|
+
recorded_at: Tue, 17 Jul 2012 12:02:39 GMT
|
112
|
+
- request:
|
113
|
+
method: post
|
114
|
+
uri: http://localhost:7477/db/data/node
|
115
|
+
body:
|
116
|
+
encoding: UTF-8
|
117
|
+
string: ! '{"email":"sarah@resistance.net"}'
|
118
|
+
headers:
|
119
|
+
Content-Type:
|
120
|
+
- application/json
|
121
|
+
response:
|
122
|
+
status:
|
123
|
+
code: 201
|
124
|
+
message: !!null
|
125
|
+
headers:
|
126
|
+
content-length:
|
127
|
+
- '1139'
|
128
|
+
location:
|
129
|
+
- http://localhost:7477/db/data/node/593
|
130
|
+
content-encoding:
|
131
|
+
- UTF-8
|
132
|
+
content-type:
|
133
|
+
- application/json
|
134
|
+
access-control-allow-origin:
|
135
|
+
- ! '*'
|
136
|
+
connection:
|
137
|
+
- close
|
138
|
+
server:
|
139
|
+
- Jetty(6.1.25)
|
140
|
+
body:
|
141
|
+
encoding: US-ASCII
|
142
|
+
string: ! "{\n \"extensions\" : {\n },\n \"paged_traverse\" : \"http://localhost:7477/db/data/node/593/paged/traverse/{returnType}{?pageSize,leaseTime}\",\n
|
143
|
+
\ \"outgoing_relationships\" : \"http://localhost:7477/db/data/node/593/relationships/out\",\n
|
144
|
+
\ \"traverse\" : \"http://localhost:7477/db/data/node/593/traverse/{returnType}\",\n
|
145
|
+
\ \"all_typed_relationships\" : \"http://localhost:7477/db/data/node/593/relationships/all/{-list|&|types}\",\n
|
146
|
+
\ \"property\" : \"http://localhost:7477/db/data/node/593/properties/{key}\",\n
|
147
|
+
\ \"all_relationships\" : \"http://localhost:7477/db/data/node/593/relationships/all\",\n
|
148
|
+
\ \"self\" : \"http://localhost:7477/db/data/node/593\",\n \"properties\"
|
149
|
+
: \"http://localhost:7477/db/data/node/593/properties\",\n \"outgoing_typed_relationships\"
|
150
|
+
: \"http://localhost:7477/db/data/node/593/relationships/out/{-list|&|types}\",\n
|
151
|
+
\ \"incoming_relationships\" : \"http://localhost:7477/db/data/node/593/relationships/in\",\n
|
152
|
+
\ \"incoming_typed_relationships\" : \"http://localhost:7477/db/data/node/593/relationships/in/{-list|&|types}\",\n
|
153
|
+
\ \"create_relationship\" : \"http://localhost:7477/db/data/node/593/relationships\",\n
|
154
|
+
\ \"data\" : {\n \"email\" : \"sarah@resistance.net\"\n }\n}"
|
155
|
+
http_version: !!null
|
156
|
+
recorded_at: Tue, 17 Jul 2012 12:02:39 GMT
|
157
|
+
- request:
|
158
|
+
method: post
|
159
|
+
uri: http://localhost:7477/db/data/node/592/relationships
|
160
|
+
body:
|
161
|
+
encoding: UTF-8
|
162
|
+
string: ! '{"to":"http://localhost:7477/db/data/node/593","type":"loves","data":{}}'
|
163
|
+
headers:
|
164
|
+
Content-Type:
|
165
|
+
- application/json
|
166
|
+
response:
|
167
|
+
status:
|
168
|
+
code: 201
|
169
|
+
message: !!null
|
170
|
+
headers:
|
171
|
+
content-length:
|
172
|
+
- '388'
|
173
|
+
location:
|
174
|
+
- http://localhost:7477/db/data/relationship/47
|
175
|
+
content-encoding:
|
176
|
+
- UTF-8
|
177
|
+
content-type:
|
178
|
+
- application/json
|
179
|
+
access-control-allow-origin:
|
180
|
+
- ! '*'
|
181
|
+
connection:
|
182
|
+
- close
|
183
|
+
server:
|
184
|
+
- Jetty(6.1.25)
|
185
|
+
body:
|
186
|
+
encoding: US-ASCII
|
187
|
+
string: ! "{\n \"extensions\" : {\n },\n \"start\" : \"http://localhost:7477/db/data/node/592\",\n
|
188
|
+
\ \"property\" : \"http://localhost:7477/db/data/relationship/47/properties/{key}\",\n
|
189
|
+
\ \"self\" : \"http://localhost:7477/db/data/relationship/47\",\n \"properties\"
|
190
|
+
: \"http://localhost:7477/db/data/relationship/47/properties\",\n \"type\"
|
191
|
+
: \"loves\",\n \"end\" : \"http://localhost:7477/db/data/node/593\",\n \"data\"
|
192
|
+
: {\n }\n}"
|
193
|
+
http_version: !!null
|
194
|
+
recorded_at: Tue, 17 Jul 2012 12:02:39 GMT
|
195
|
+
- request:
|
196
|
+
method: get
|
197
|
+
uri: http://localhost:7477/db/data/relationship/types
|
198
|
+
body:
|
199
|
+
encoding: US-ASCII
|
200
|
+
string: ''
|
201
|
+
headers: {}
|
202
|
+
response:
|
203
|
+
status:
|
204
|
+
code: 200
|
205
|
+
message: !!null
|
206
|
+
headers:
|
207
|
+
content-type:
|
208
|
+
- application/json
|
209
|
+
access-control-allow-origin:
|
210
|
+
- ! '*'
|
211
|
+
connection:
|
212
|
+
- close
|
213
|
+
server:
|
214
|
+
- Jetty(6.1.25)
|
215
|
+
body:
|
216
|
+
encoding: US-ASCII
|
217
|
+
string: ! '["loves","knows"]'
|
218
|
+
http_version: !!null
|
219
|
+
recorded_at: Tue, 17 Jul 2012 12:02:39 GMT
|
220
|
+
recorded_with: VCR 2.2.2
|