keymaker 0.0.9 → 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/Rakefile +1 -1
- data/keymaker.gemspec +5 -37
- data/lib/keymaker.rb +8 -5
- data/lib/keymaker/node.rb +69 -45
- data/lib/keymaker/parsers/cypher_response_parser.rb +25 -0
- data/lib/keymaker/serialization.rb +2 -1
- data/lib/keymaker/service.rb +4 -17
- data/spec/keymaker/node_spec.rb +92 -0
- data/spec/keymaker/requests/add_node_to_index_request_spec.rb +13 -13
- data/spec/keymaker/requests/batch_request_spec.rb +3 -56
- data/spec/keymaker/requests/create_node_request_spec.rb +15 -9
- data/spec/keymaker/requests/create_relationship_request_spec.rb +19 -11
- data/spec/keymaker/requests/execute_cypher_request_spec.rb +1 -1
- data/spec/keymaker/requests/get_relationship_types_request_spec.rb +3 -4
- data/spec/keymaker/requests/update_node_properties_request_spec.rb +1 -1
- data/spec/keymaker_spec.rb +38 -8
- data/spec/support/active_model_lint.rb +17 -0
- data/spec/support/keymaker.rb +1 -1
- metadata +8 -73
- data/spec/cassettes/Keymaker_AddNodeToIndexRequest/with_valid_options/returns_a_201_status_code.yml +0 -203
- data/spec/cassettes/Keymaker_AddNodeToIndexRequest/with_valid_options/returns_application/json.yml +0 -203
- data/spec/cassettes/Keymaker_AddNodeToIndexRequest/with_valid_options/returns_the_Neo4j_REST_API_starting_point_response_request.yml +0 -203
- data/spec/cassettes/Keymaker_BatchRequest/when_a_resource_is_not_found/raises_BatchRequestError.yml +0 -120
- data/spec/cassettes/Keymaker_BatchRequest/when_to_and_method_are_not_set/raises_BatchRequestError.yml +0 -106
- data/spec/cassettes/Keymaker_BatchRequest/with_valid_options/returns_a_200_status_code.yml +0 -129
- data/spec/cassettes/Keymaker_BatchRequest/with_valid_options/runs_the_commands_and_returns_their_respective_results.yml +0 -129
- data/spec/cassettes/Keymaker_CreateNodeRequest/returns_a_201_status_code.yml +0 -112
- data/spec/cassettes/Keymaker_CreateNodeRequest/returns_application/json.yml +0 -112
- data/spec/cassettes/Keymaker_CreateNodeRequest/with_properties/creates_a_node_with_the_given_properties.yml +0 -112
- data/spec/cassettes/Keymaker_CreateNodeRequest/without_properties/creates_an_empty_node.yml +0 -112
- data/spec/cassettes/Keymaker_CreateRelationshipRequest/with_invalid_options/raises_ClientError.yml +0 -201
- data/spec/cassettes/Keymaker_CreateRelationshipRequest/with_properties/creates_a_node_with_the_given_properties.yml +0 -233
- data/spec/cassettes/Keymaker_CreateRelationshipRequest/with_properties/returns_a_201_status_code.yml +0 -196
- data/spec/cassettes/Keymaker_CreateRelationshipRequest/with_properties/returns_application/json.yml +0 -196
- data/spec/cassettes/Keymaker_CreateRelationshipRequest/without_properties/creates_an_empty_relationship_of_type_birthed_.yml +0 -195
- data/spec/cassettes/Keymaker_DeleteRelationshipRequest/with_a_non-existent_relationship/raises_ResourceNotFound.yml +0 -191
- data/spec/cassettes/Keymaker_DeleteRelationshipRequest/with_an_existing_relationship/deletes_the_relationship.yml +0 -219
- data/spec/cassettes/Keymaker_ExecuteCypherRequest/with_a_valid_Cypher_Query/returns_a_200_status_code.yml +0 -111
- data/spec/cassettes/Keymaker_ExecuteCypherRequest/with_an_invalid_Cypher_Query/raises_ClientError.yml +0 -108
- data/spec/cassettes/Keymaker_ExecuteGremlinRequest/with_a_valid_Gremlin_Script/returns_a_200_status_code.yml +0 -98
- data/spec/cassettes/Keymaker_ExecuteGremlinRequest/with_an_invalid_Gremlin_Script/raises_ClientError.yml +0 -107
- data/spec/cassettes/Keymaker_GetNodeRequest/with_a_non-existent_node_id/raises_ResourceNotFound.yml +0 -101
- data/spec/cassettes/Keymaker_GetNodeRequest/with_an_empty_node_id/raises_ClientError.yml +0 -111
- data/spec/cassettes/Keymaker_GetRelationshipTypesRequest/with_existing_relationships/returns_a_unique_array_of_relationship_types.yml +0 -220
- data/spec/cassettes/Keymaker_ServiceRootRequest/returns_a_200_status_code.yml +0 -105
- data/spec/cassettes/Keymaker_ServiceRootRequest/returns_application/json.yml +0 -105
- data/spec/cassettes/Keymaker_ServiceRootRequest/returns_the_Neo4j_REST_API_starting_point_response_request.yml +0 -105
- data/spec/cassettes/Keymaker_TraversePathRequest/_traverse_path_properties/with_options/builds_the_query_properties_with_defaults.yml +0 -157
- data/spec/cassettes/Keymaker_TraversePathRequest/with_invalid_options/raise_a_ClientError.yml +0 -193
- data/spec/cassettes/Keymaker_TraversePathRequest/with_valid_options/returns_status_code_200.yml +0 -269
- data/spec/cassettes/Keymaker_UpdateNodePropertiesRequest/_node_properties/excludes_the_node_id.yml +0 -157
- data/spec/cassettes/Keymaker_UpdateNodePropertiesRequest/with_invalid_options/raises_a_ClientError.yml +0 -193
- data/spec/cassettes/Keymaker_UpdateNodePropertiesRequest/with_valid_options/returns_a_status_of_204.yml +0 -182
- data/spec/cassettes/Keymaker_UpdateNodePropertiesRequest/with_valid_options/updates_the_properties.yml +0 -214
data/spec/cassettes/Keymaker_BatchRequest/when_a_resource_is_not_found/raises_BatchRequestError.yml
DELETED
@@ -1,120 +0,0 @@
|
|
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":"GET","to":"/node/999999999"}]'
|
73
|
-
headers:
|
74
|
-
Content-Type:
|
75
|
-
- application/json
|
76
|
-
response:
|
77
|
-
status:
|
78
|
-
code: 500
|
79
|
-
message: !!null
|
80
|
-
headers:
|
81
|
-
content-length:
|
82
|
-
- '2172'
|
83
|
-
content-encoding:
|
84
|
-
- UTF-8
|
85
|
-
content-type:
|
86
|
-
- application/json
|
87
|
-
access-control-allow-origin:
|
88
|
-
- ! '*'
|
89
|
-
connection:
|
90
|
-
- close
|
91
|
-
server:
|
92
|
-
- Jetty(6.1.25)
|
93
|
-
body:
|
94
|
-
encoding: US-ASCII
|
95
|
-
string: ! "{\n \"message\" : \"{\\n \\\"message\\\" : \\\"Cannot find node
|
96
|
-
with id [999999999] in database.\\\",\\n \\\"exception\\\" : \\\"NodeNotFoundException\\\",\\n
|
97
|
-
\ \\\"stacktrace\\\" : [ \\\"org.neo4j.server.rest.web.DatabaseActions.node(DatabaseActions.java:123)\\\",
|
98
|
-
\\\"org.neo4j.server.rest.web.DatabaseActions.getNode(DatabaseActions.java:234)\\\",
|
99
|
-
\\\"org.neo4j.server.rest.web.RestfulGraphDatabase.getNode(RestfulGraphDatabase.java:225)\\\",
|
100
|
-
\\\"java.lang.reflect.Method.invoke(Method.java:597)\\\", \\\"org.neo4j.server.statistic.StatisticFilter.doFilter(StatisticFilter.java:62)\\\",
|
101
|
-
\\\"org.neo4j.server.web.Jetty6WebServer.invokeDirectly(Jetty6WebServer.java:270)\\\",
|
102
|
-
\\\"org.neo4j.server.rest.batch.NonStreamingBatchOperations.invoke(NonStreamingBatchOperations.java:55)\\\",
|
103
|
-
\\\"org.neo4j.server.rest.batch.BatchOperations.performRequest(BatchOperations.java:178)\\\",
|
104
|
-
\\\"org.neo4j.server.rest.batch.BatchOperations.parseAndPerform(BatchOperations.java:149)\\\",
|
105
|
-
\\\"org.neo4j.server.rest.batch.NonStreamingBatchOperations.performBatchJobs(NonStreamingBatchOperations.java:48)\\\",
|
106
|
-
\\\"org.neo4j.server.rest.web.BatchOperationService.batchProcess(BatchOperationService.java:117)\\\",
|
107
|
-
\\\"org.neo4j.server.rest.web.BatchOperationService.performBatchOperations(BatchOperationService.java:71)\\\",
|
108
|
-
\\\"java.lang.reflect.Method.invoke(Method.java:597)\\\", \\\"org.neo4j.server.statistic.StatisticFilter.doFilter(StatisticFilter.java:62)\\\"
|
109
|
-
]\\n}\",\n \"exception\" : \"BatchOperationFailedException\",\n \"stacktrace\"
|
110
|
-
: [ \"org.neo4j.server.rest.batch.NonStreamingBatchOperations.invoke(NonStreamingBatchOperations.java:63)\",
|
111
|
-
\"org.neo4j.server.rest.batch.BatchOperations.performRequest(BatchOperations.java:178)\",
|
112
|
-
\"org.neo4j.server.rest.batch.BatchOperations.parseAndPerform(BatchOperations.java:149)\",
|
113
|
-
\"org.neo4j.server.rest.batch.NonStreamingBatchOperations.performBatchJobs(NonStreamingBatchOperations.java:48)\",
|
114
|
-
\"org.neo4j.server.rest.web.BatchOperationService.batchProcess(BatchOperationService.java:117)\",
|
115
|
-
\"org.neo4j.server.rest.web.BatchOperationService.performBatchOperations(BatchOperationService.java:71)\",
|
116
|
-
\"java.lang.reflect.Method.invoke(Method.java:597)\", \"org.neo4j.server.statistic.StatisticFilter.doFilter(StatisticFilter.java:62)\"
|
117
|
-
]\n}"
|
118
|
-
http_version: !!null
|
119
|
-
recorded_at: Tue, 10 Jul 2012 02:33:49 GMT
|
120
|
-
recorded_with: VCR 2.2.2
|
@@ -1,106 +0,0 @@
|
|
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: ! '[{"foo":"WET","ot":"/node/1"}]'
|
73
|
-
headers:
|
74
|
-
Content-Type:
|
75
|
-
- application/json
|
76
|
-
response:
|
77
|
-
status:
|
78
|
-
code: 500
|
79
|
-
message: !!null
|
80
|
-
headers:
|
81
|
-
content-length:
|
82
|
-
- '816'
|
83
|
-
content-encoding:
|
84
|
-
- UTF-8
|
85
|
-
content-type:
|
86
|
-
- application/json
|
87
|
-
access-control-allow-origin:
|
88
|
-
- ! '*'
|
89
|
-
connection:
|
90
|
-
- close
|
91
|
-
server:
|
92
|
-
- Jetty(6.1.25)
|
93
|
-
body:
|
94
|
-
encoding: US-ASCII
|
95
|
-
string: ! "{\n \"message\" : \"\",\n \"exception\" : \"BatchOperationFailedException\",\n
|
96
|
-
\ \"stacktrace\" : [ \"org.neo4j.server.rest.batch.NonStreamingBatchOperations.invoke(NonStreamingBatchOperations.java:63)\",
|
97
|
-
\"org.neo4j.server.rest.batch.BatchOperations.performRequest(BatchOperations.java:178)\",
|
98
|
-
\"org.neo4j.server.rest.batch.BatchOperations.parseAndPerform(BatchOperations.java:149)\",
|
99
|
-
\"org.neo4j.server.rest.batch.NonStreamingBatchOperations.performBatchJobs(NonStreamingBatchOperations.java:48)\",
|
100
|
-
\"org.neo4j.server.rest.web.BatchOperationService.batchProcess(BatchOperationService.java:117)\",
|
101
|
-
\"org.neo4j.server.rest.web.BatchOperationService.performBatchOperations(BatchOperationService.java:71)\",
|
102
|
-
\"java.lang.reflect.Method.invoke(Method.java:597)\", \"org.neo4j.server.statistic.StatisticFilter.doFilter(StatisticFilter.java:62)\"
|
103
|
-
]\n}"
|
104
|
-
http_version: !!null
|
105
|
-
recorded_at: Tue, 10 Jul 2012 02:33:49 GMT
|
106
|
-
recorded_with: VCR 2.2.2
|
@@ -1,129 +0,0 @@
|
|
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/28\",\"body\":{\n
|
95
|
-
\ \"extensions\" : {\n },\n \"paged_traverse\" : \"http://localhost:7477/db/data/node/28/paged/traverse/{returnType}{?pageSize,leaseTime}\",\n
|
96
|
-
\ \"outgoing_relationships\" : \"http://localhost:7477/db/data/node/28/relationships/out\",\n
|
97
|
-
\ \"traverse\" : \"http://localhost:7477/db/data/node/28/traverse/{returnType}\",\n
|
98
|
-
\ \"all_typed_relationships\" : \"http://localhost:7477/db/data/node/28/relationships/all/{-list|&|types}\",\n
|
99
|
-
\ \"property\" : \"http://localhost:7477/db/data/node/28/properties/{key}\",\n
|
100
|
-
\ \"all_relationships\" : \"http://localhost:7477/db/data/node/28/relationships/all\",\n
|
101
|
-
\ \"self\" : \"http://localhost:7477/db/data/node/28\",\n \"properties\"
|
102
|
-
: \"http://localhost:7477/db/data/node/28/properties\",\n \"outgoing_typed_relationships\"
|
103
|
-
: \"http://localhost:7477/db/data/node/28/relationships/out/{-list|&|types}\",\n
|
104
|
-
\ \"incoming_relationships\" : \"http://localhost:7477/db/data/node/28/relationships/in\",\n
|
105
|
-
\ \"incoming_typed_relationships\" : \"http://localhost:7477/db/data/node/28/relationships/in/{-list|&|types}\",\n
|
106
|
-
\ \"create_relationship\" : \"http://localhost:7477/db/data/node/28/relationships\",\n
|
107
|
-
\ \"data\" : {\n \"name\" : \"John Connor\"\n }\n},\"from\":\"/node\"},{\"id\":1,\"location\":\"http://localhost:7477/db/data/node/29\",\"body\":{\n
|
108
|
-
\ \"extensions\" : {\n },\n \"paged_traverse\" : \"http://localhost:7477/db/data/node/29/paged/traverse/{returnType}{?pageSize,leaseTime}\",\n
|
109
|
-
\ \"outgoing_relationships\" : \"http://localhost:7477/db/data/node/29/relationships/out\",\n
|
110
|
-
\ \"traverse\" : \"http://localhost:7477/db/data/node/29/traverse/{returnType}\",\n
|
111
|
-
\ \"all_typed_relationships\" : \"http://localhost:7477/db/data/node/29/relationships/all/{-list|&|types}\",\n
|
112
|
-
\ \"property\" : \"http://localhost:7477/db/data/node/29/properties/{key}\",\n
|
113
|
-
\ \"all_relationships\" : \"http://localhost:7477/db/data/node/29/relationships/all\",\n
|
114
|
-
\ \"self\" : \"http://localhost:7477/db/data/node/29\",\n \"properties\"
|
115
|
-
: \"http://localhost:7477/db/data/node/29/properties\",\n \"outgoing_typed_relationships\"
|
116
|
-
: \"http://localhost:7477/db/data/node/29/relationships/out/{-list|&|types}\",\n
|
117
|
-
\ \"incoming_relationships\" : \"http://localhost:7477/db/data/node/29/relationships/in\",\n
|
118
|
-
\ \"incoming_typed_relationships\" : \"http://localhost:7477/db/data/node/29/relationships/in/{-list|&|types}\",\n
|
119
|
-
\ \"create_relationship\" : \"http://localhost:7477/db/data/node/29/relationships\",\n
|
120
|
-
\ \"data\" : {\n \"name\" : \"Sarah Connor\"\n }\n},\"from\":\"/node\"},{\"id\":3,\"location\":\"http://localhost:7477/db/data/relationship/3\",\"body\":{\n
|
121
|
-
\ \"extensions\" : {\n },\n \"start\" : \"http://localhost:7477/db/data/node/28\",\n
|
122
|
-
\ \"property\" : \"http://localhost:7477/db/data/relationship/3/properties/{key}\",\n
|
123
|
-
\ \"self\" : \"http://localhost:7477/db/data/relationship/3\",\n \"properties\"
|
124
|
-
: \"http://localhost:7477/db/data/relationship/3/properties\",\n \"type\"
|
125
|
-
: \"knows\",\n \"end\" : \"http://localhost:7477/db/data/node/29\",\n \"data\"
|
126
|
-
: {\n \"since\" : \"1985\"\n }\n},\"from\":\"http://localhost:7477/db/data/node/28/relationships\"}]"
|
127
|
-
http_version: !!null
|
128
|
-
recorded_at: Tue, 10 Jul 2012 02:33:49 GMT
|
129
|
-
recorded_with: VCR 2.2.2
|
@@ -1,129 +0,0 @@
|
|
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
|