├── .gitignore ├── .project ├── .rspec ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTORS ├── Gemfile ├── Guardfile ├── LICENSE ├── README.md ├── Rakefile ├── examples ├── facebook.rb ├── facebook_v2.rb ├── greatest.rb ├── linkedin.rb ├── linkedin_v2.rb ├── traversal_example1.rb └── traversal_example2.rb ├── lib ├── neography.rb └── neography │ ├── config.rb │ ├── connection.rb │ ├── equal.rb │ ├── errors.rb │ ├── index.rb │ ├── multi_json_parser.rb │ ├── neography.rb │ ├── node.rb │ ├── node_path.rb │ ├── node_relationship.rb │ ├── node_traverser.rb │ ├── path_traverser.rb │ ├── property.rb │ ├── property_container.rb │ ├── railtie.rb │ ├── relationship.rb │ ├── relationship_traverser.rb │ ├── rest.rb │ ├── rest │ ├── auth.rb │ ├── batch.rb │ ├── clean.rb │ ├── constraints.rb │ ├── cypher.rb │ ├── extensions.rb │ ├── gremlin.rb │ ├── helpers.rb │ ├── node_auto_indexes.rb │ ├── node_indexes.rb │ ├── node_labels.rb │ ├── node_paths.rb │ ├── node_properties.rb │ ├── node_relationships.rb │ ├── node_traversal.rb │ ├── nodes.rb │ ├── other_node_relationships.rb │ ├── relationship_auto_indexes.rb │ ├── relationship_indexes.rb │ ├── relationship_properties.rb │ ├── relationship_types.rb │ ├── relationships.rb │ ├── schema_indexes.rb │ ├── spatial.rb │ └── transactions.rb │ ├── tasks.rb │ └── version.rb ├── neography.gemspec └── spec ├── integration ├── authorization_spec.rb ├── broken_spatial_spec.rb ├── index_spec.rb ├── neography_spec.rb ├── node_encoding_spec.rb ├── node_path_spec.rb ├── node_relationship_spec.rb ├── node_spec.rb ├── parsing_spec.rb ├── performance_spec.rb ├── relationship_spec.rb ├── rest_batch_no_streaming_spec.rb ├── rest_batch_spec.rb ├── rest_batch_streaming_spec.rb ├── rest_bulk_spec.rb ├── rest_constraints_spec.rb ├── rest_experimental_spec.rb ├── rest_gremlin_fail_spec.rb ├── rest_header_spec.rb ├── rest_index_spec.rb ├── rest_labels_spec.rb ├── rest_node_spec.rb ├── rest_other_node_relationship_spec.rb ├── rest_path_spec.rb ├── rest_plugin_spec.rb ├── rest_relationship_spec.rb ├── rest_relationship_types_spec.rb ├── rest_schema_index_spec.rb ├── rest_spatial_spec.rb ├── rest_transaction_spec.rb ├── rest_traverse_spec.rb └── unmanaged_spec.rb ├── matchers.rb ├── neography_spec.rb ├── spec_helper.rb └── unit ├── config_spec.rb ├── connection_spec.rb ├── node_spec.rb ├── properties_spec.rb ├── relationship_spec.rb └── rest ├── batch_spec.rb ├── clean_spec.rb ├── constraints_spec.rb ├── cypher_spec.rb ├── extensions_spec.rb ├── gremlin_spec.rb ├── helpers_spec.rb ├── labels_spec.rb ├── node_auto_indexes_spec.rb ├── node_indexes_spec.rb ├── node_paths_spec.rb ├── node_properties_spec.rb ├── node_relationships_spec.rb ├── node_traversal_spec.rb ├── nodes_spec.rb ├── relationship_auto_indexes_spec.rb ├── relationship_indexes_spec.rb ├── relationship_properties_spec.rb ├── relationship_types_spec.rb ├── relationships_spec.rb ├── schema_index_spec.rb └── transactions_spec.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/.gitignore -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/.project -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --colour 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/CONTRIBUTORS -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/Gemfile -------------------------------------------------------------------------------- /Guardfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/Guardfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/Rakefile -------------------------------------------------------------------------------- /examples/facebook.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/examples/facebook.rb -------------------------------------------------------------------------------- /examples/facebook_v2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/examples/facebook_v2.rb -------------------------------------------------------------------------------- /examples/greatest.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/examples/greatest.rb -------------------------------------------------------------------------------- /examples/linkedin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/examples/linkedin.rb -------------------------------------------------------------------------------- /examples/linkedin_v2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/examples/linkedin_v2.rb -------------------------------------------------------------------------------- /examples/traversal_example1.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/examples/traversal_example1.rb -------------------------------------------------------------------------------- /examples/traversal_example2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/examples/traversal_example2.rb -------------------------------------------------------------------------------- /lib/neography.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/lib/neography.rb -------------------------------------------------------------------------------- /lib/neography/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/lib/neography/config.rb -------------------------------------------------------------------------------- /lib/neography/connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/lib/neography/connection.rb -------------------------------------------------------------------------------- /lib/neography/equal.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/lib/neography/equal.rb -------------------------------------------------------------------------------- /lib/neography/errors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/lib/neography/errors.rb -------------------------------------------------------------------------------- /lib/neography/index.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/lib/neography/index.rb -------------------------------------------------------------------------------- /lib/neography/multi_json_parser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/lib/neography/multi_json_parser.rb -------------------------------------------------------------------------------- /lib/neography/neography.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/lib/neography/neography.rb -------------------------------------------------------------------------------- /lib/neography/node.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/lib/neography/node.rb -------------------------------------------------------------------------------- /lib/neography/node_path.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/lib/neography/node_path.rb -------------------------------------------------------------------------------- /lib/neography/node_relationship.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/lib/neography/node_relationship.rb -------------------------------------------------------------------------------- /lib/neography/node_traverser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/lib/neography/node_traverser.rb -------------------------------------------------------------------------------- /lib/neography/path_traverser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/lib/neography/path_traverser.rb -------------------------------------------------------------------------------- /lib/neography/property.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/lib/neography/property.rb -------------------------------------------------------------------------------- /lib/neography/property_container.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/lib/neography/property_container.rb -------------------------------------------------------------------------------- /lib/neography/railtie.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/lib/neography/railtie.rb -------------------------------------------------------------------------------- /lib/neography/relationship.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/lib/neography/relationship.rb -------------------------------------------------------------------------------- /lib/neography/relationship_traverser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/lib/neography/relationship_traverser.rb -------------------------------------------------------------------------------- /lib/neography/rest.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/lib/neography/rest.rb -------------------------------------------------------------------------------- /lib/neography/rest/auth.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/lib/neography/rest/auth.rb -------------------------------------------------------------------------------- /lib/neography/rest/batch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/lib/neography/rest/batch.rb -------------------------------------------------------------------------------- /lib/neography/rest/clean.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/lib/neography/rest/clean.rb -------------------------------------------------------------------------------- /lib/neography/rest/constraints.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/lib/neography/rest/constraints.rb -------------------------------------------------------------------------------- /lib/neography/rest/cypher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/lib/neography/rest/cypher.rb -------------------------------------------------------------------------------- /lib/neography/rest/extensions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/lib/neography/rest/extensions.rb -------------------------------------------------------------------------------- /lib/neography/rest/gremlin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/lib/neography/rest/gremlin.rb -------------------------------------------------------------------------------- /lib/neography/rest/helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/lib/neography/rest/helpers.rb -------------------------------------------------------------------------------- /lib/neography/rest/node_auto_indexes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/lib/neography/rest/node_auto_indexes.rb -------------------------------------------------------------------------------- /lib/neography/rest/node_indexes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/lib/neography/rest/node_indexes.rb -------------------------------------------------------------------------------- /lib/neography/rest/node_labels.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/lib/neography/rest/node_labels.rb -------------------------------------------------------------------------------- /lib/neography/rest/node_paths.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/lib/neography/rest/node_paths.rb -------------------------------------------------------------------------------- /lib/neography/rest/node_properties.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/lib/neography/rest/node_properties.rb -------------------------------------------------------------------------------- /lib/neography/rest/node_relationships.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/lib/neography/rest/node_relationships.rb -------------------------------------------------------------------------------- /lib/neography/rest/node_traversal.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/lib/neography/rest/node_traversal.rb -------------------------------------------------------------------------------- /lib/neography/rest/nodes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/lib/neography/rest/nodes.rb -------------------------------------------------------------------------------- /lib/neography/rest/other_node_relationships.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/lib/neography/rest/other_node_relationships.rb -------------------------------------------------------------------------------- /lib/neography/rest/relationship_auto_indexes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/lib/neography/rest/relationship_auto_indexes.rb -------------------------------------------------------------------------------- /lib/neography/rest/relationship_indexes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/lib/neography/rest/relationship_indexes.rb -------------------------------------------------------------------------------- /lib/neography/rest/relationship_properties.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/lib/neography/rest/relationship_properties.rb -------------------------------------------------------------------------------- /lib/neography/rest/relationship_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/lib/neography/rest/relationship_types.rb -------------------------------------------------------------------------------- /lib/neography/rest/relationships.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/lib/neography/rest/relationships.rb -------------------------------------------------------------------------------- /lib/neography/rest/schema_indexes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/lib/neography/rest/schema_indexes.rb -------------------------------------------------------------------------------- /lib/neography/rest/spatial.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/lib/neography/rest/spatial.rb -------------------------------------------------------------------------------- /lib/neography/rest/transactions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/lib/neography/rest/transactions.rb -------------------------------------------------------------------------------- /lib/neography/tasks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/lib/neography/tasks.rb -------------------------------------------------------------------------------- /lib/neography/version.rb: -------------------------------------------------------------------------------- 1 | module Neography 2 | VERSION = "1.8.0" 3 | end 4 | -------------------------------------------------------------------------------- /neography.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/neography.gemspec -------------------------------------------------------------------------------- /spec/integration/authorization_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/spec/integration/authorization_spec.rb -------------------------------------------------------------------------------- /spec/integration/broken_spatial_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/spec/integration/broken_spatial_spec.rb -------------------------------------------------------------------------------- /spec/integration/index_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/spec/integration/index_spec.rb -------------------------------------------------------------------------------- /spec/integration/neography_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/spec/integration/neography_spec.rb -------------------------------------------------------------------------------- /spec/integration/node_encoding_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/spec/integration/node_encoding_spec.rb -------------------------------------------------------------------------------- /spec/integration/node_path_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/spec/integration/node_path_spec.rb -------------------------------------------------------------------------------- /spec/integration/node_relationship_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/spec/integration/node_relationship_spec.rb -------------------------------------------------------------------------------- /spec/integration/node_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/spec/integration/node_spec.rb -------------------------------------------------------------------------------- /spec/integration/parsing_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/spec/integration/parsing_spec.rb -------------------------------------------------------------------------------- /spec/integration/performance_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/spec/integration/performance_spec.rb -------------------------------------------------------------------------------- /spec/integration/relationship_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/spec/integration/relationship_spec.rb -------------------------------------------------------------------------------- /spec/integration/rest_batch_no_streaming_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/spec/integration/rest_batch_no_streaming_spec.rb -------------------------------------------------------------------------------- /spec/integration/rest_batch_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/spec/integration/rest_batch_spec.rb -------------------------------------------------------------------------------- /spec/integration/rest_batch_streaming_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/spec/integration/rest_batch_streaming_spec.rb -------------------------------------------------------------------------------- /spec/integration/rest_bulk_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/spec/integration/rest_bulk_spec.rb -------------------------------------------------------------------------------- /spec/integration/rest_constraints_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/spec/integration/rest_constraints_spec.rb -------------------------------------------------------------------------------- /spec/integration/rest_experimental_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/spec/integration/rest_experimental_spec.rb -------------------------------------------------------------------------------- /spec/integration/rest_gremlin_fail_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/spec/integration/rest_gremlin_fail_spec.rb -------------------------------------------------------------------------------- /spec/integration/rest_header_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/spec/integration/rest_header_spec.rb -------------------------------------------------------------------------------- /spec/integration/rest_index_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/spec/integration/rest_index_spec.rb -------------------------------------------------------------------------------- /spec/integration/rest_labels_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/spec/integration/rest_labels_spec.rb -------------------------------------------------------------------------------- /spec/integration/rest_node_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/spec/integration/rest_node_spec.rb -------------------------------------------------------------------------------- /spec/integration/rest_other_node_relationship_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/spec/integration/rest_other_node_relationship_spec.rb -------------------------------------------------------------------------------- /spec/integration/rest_path_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/spec/integration/rest_path_spec.rb -------------------------------------------------------------------------------- /spec/integration/rest_plugin_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/spec/integration/rest_plugin_spec.rb -------------------------------------------------------------------------------- /spec/integration/rest_relationship_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/spec/integration/rest_relationship_spec.rb -------------------------------------------------------------------------------- /spec/integration/rest_relationship_types_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/spec/integration/rest_relationship_types_spec.rb -------------------------------------------------------------------------------- /spec/integration/rest_schema_index_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/spec/integration/rest_schema_index_spec.rb -------------------------------------------------------------------------------- /spec/integration/rest_spatial_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/spec/integration/rest_spatial_spec.rb -------------------------------------------------------------------------------- /spec/integration/rest_transaction_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/spec/integration/rest_transaction_spec.rb -------------------------------------------------------------------------------- /spec/integration/rest_traverse_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/spec/integration/rest_traverse_spec.rb -------------------------------------------------------------------------------- /spec/integration/unmanaged_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/spec/integration/unmanaged_spec.rb -------------------------------------------------------------------------------- /spec/matchers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/spec/matchers.rb -------------------------------------------------------------------------------- /spec/neography_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/spec/neography_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/unit/config_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/spec/unit/config_spec.rb -------------------------------------------------------------------------------- /spec/unit/connection_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/spec/unit/connection_spec.rb -------------------------------------------------------------------------------- /spec/unit/node_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/spec/unit/node_spec.rb -------------------------------------------------------------------------------- /spec/unit/properties_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/spec/unit/properties_spec.rb -------------------------------------------------------------------------------- /spec/unit/relationship_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/spec/unit/relationship_spec.rb -------------------------------------------------------------------------------- /spec/unit/rest/batch_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/spec/unit/rest/batch_spec.rb -------------------------------------------------------------------------------- /spec/unit/rest/clean_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/spec/unit/rest/clean_spec.rb -------------------------------------------------------------------------------- /spec/unit/rest/constraints_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/spec/unit/rest/constraints_spec.rb -------------------------------------------------------------------------------- /spec/unit/rest/cypher_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/spec/unit/rest/cypher_spec.rb -------------------------------------------------------------------------------- /spec/unit/rest/extensions_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/spec/unit/rest/extensions_spec.rb -------------------------------------------------------------------------------- /spec/unit/rest/gremlin_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/spec/unit/rest/gremlin_spec.rb -------------------------------------------------------------------------------- /spec/unit/rest/helpers_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/spec/unit/rest/helpers_spec.rb -------------------------------------------------------------------------------- /spec/unit/rest/labels_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/spec/unit/rest/labels_spec.rb -------------------------------------------------------------------------------- /spec/unit/rest/node_auto_indexes_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/spec/unit/rest/node_auto_indexes_spec.rb -------------------------------------------------------------------------------- /spec/unit/rest/node_indexes_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/spec/unit/rest/node_indexes_spec.rb -------------------------------------------------------------------------------- /spec/unit/rest/node_paths_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/spec/unit/rest/node_paths_spec.rb -------------------------------------------------------------------------------- /spec/unit/rest/node_properties_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/spec/unit/rest/node_properties_spec.rb -------------------------------------------------------------------------------- /spec/unit/rest/node_relationships_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/spec/unit/rest/node_relationships_spec.rb -------------------------------------------------------------------------------- /spec/unit/rest/node_traversal_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/spec/unit/rest/node_traversal_spec.rb -------------------------------------------------------------------------------- /spec/unit/rest/nodes_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/spec/unit/rest/nodes_spec.rb -------------------------------------------------------------------------------- /spec/unit/rest/relationship_auto_indexes_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/spec/unit/rest/relationship_auto_indexes_spec.rb -------------------------------------------------------------------------------- /spec/unit/rest/relationship_indexes_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/spec/unit/rest/relationship_indexes_spec.rb -------------------------------------------------------------------------------- /spec/unit/rest/relationship_properties_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/spec/unit/rest/relationship_properties_spec.rb -------------------------------------------------------------------------------- /spec/unit/rest/relationship_types_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/spec/unit/rest/relationship_types_spec.rb -------------------------------------------------------------------------------- /spec/unit/rest/relationships_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/spec/unit/rest/relationships_spec.rb -------------------------------------------------------------------------------- /spec/unit/rest/schema_index_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/spec/unit/rest/schema_index_spec.rb -------------------------------------------------------------------------------- /spec/unit/rest/transactions_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdemarzi/neography/HEAD/spec/unit/rest/transactions_spec.rb --------------------------------------------------------------------------------