The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

Search results for "dist:REST-Neo4p REST"

REST::Neo4p - Perl object bindings for a Neo4j database River stage one • 1 direct dependent • 1 total dependent

REST::Neo4p provides a Perl 5 object framework for accessing and manipulating a Neo4j <http://neo4j.org> graph database server via the Neo4j REST API. Its goals are (1) to make the API as transparent as possible, allowing the user to work exclusively...

MAJENSEN/REST-Neo4p-0.4003 - 23 Jan 2022 01:02:57 UTC

REST::Neo4p::Node - Neo4j node object River stage one • 1 direct dependent • 1 total dependent

REST::Neo4p::Node objects represent Neo4j nodes....

MAJENSEN/REST-Neo4p-0.4003 - 23 Jan 2022 01:02:57 UTC

REST::Neo4p::Path - Container for Neo4j path elements River stage one • 1 direct dependent • 1 total dependent

REST::Neo4p::Path provides a simple container for Neo4j paths as returned by Cypher queries. Nodes and relationships are stored in path order. Creating de novo instances of this class is really the job of REST::Neo4p::Query....

MAJENSEN/REST-Neo4p-0.4003 - 23 Jan 2022 01:02:57 UTC

REST::Neo4p::Agent - HTTP client interacting with Neo4j River stage one • 1 direct dependent • 1 total dependent

The agent's job is to encapsulate and connect to the REST service URLs of a running Neo4j server. It also stores the discovered URLs for various actions and provides those URLs as getters from the agent object. The getter names are the keys in the JS...

MAJENSEN/REST-Neo4p-0.4003 - 23 Jan 2022 01:02:57 UTC

REST::Neo4p::Query - Execute Neo4j Cypher queries River stage one • 1 direct dependent • 1 total dependent

REST::Neo4p::Query encapsulates Neo4j Cypher language queries, executing them via REST::Neo4p::Agent and returning an iterator over the rows, in the spirit of DBI. Streaming "execute()" captures the Neo4j query response in a temp file. "fetch()" iter...

MAJENSEN/REST-Neo4p-0.4003 - 23 Jan 2022 01:02:57 UTC

REST::Neo4p::Batch - Mixin for batch processing River stage one • 1 direct dependent • 1 total dependent

REST::Neo4p::Batch adds some syntactic sugar allowing ordinary REST::Neo4p code to be processed through the Neo4j REST batch API. Batch mode is not supported in Neo4j version 4.0+. The methods in this module will barf....

MAJENSEN/REST-Neo4p-0.4003 - 23 Jan 2022 01:02:57 UTC

REST::Neo4p::Index - Neo4j index object River stage one • 1 direct dependent • 1 total dependent

REST::Neo4p::Index objects represent Neo4j node and relationship indexes....

MAJENSEN/REST-Neo4p-0.4003 - 23 Jan 2022 01:02:57 UTC

REST::Neo4p::Entity - Base class for Neo4j entities River stage one • 1 direct dependent • 1 total dependent

REST::Neo4p::Entity is the base class for the node, relationship and index classes which should be used directly. The base class encapsulates most of the REST::Neo4p::Agent calls to the Neo4j server, converts JSON responses to Perl references, acknow...

MAJENSEN/REST-Neo4p-0.4003 - 23 Jan 2022 01:02:57 UTC

REST::Neo4p::Schema - Label-based indexes and constraints River stage one • 1 direct dependent • 1 total dependent

Neo4j <http://neo4j.org> v2.0+ provides a way to schematize the graph on the basis of node labels, associated indexes, and property uniqueness constraints. "REST::Neo4p::Schema" allows access to this system via the Neo4j REST API. Use a "Schema" obje...

MAJENSEN/REST-Neo4p-0.4003 - 23 Jan 2022 01:02:57 UTC

REST::Neo4p::Constrain - Create and apply Neo4j app-level constraints River stage one • 1 direct dependent • 1 total dependent

Neo4j <http://neo4j.org>, as a NoSQL database, is intentionally lenient. One of its only hardwired constraints is its refusal to remove a Node that is involved in a Relationship. Other constraints to database content (properties and their values, "ki...

MAJENSEN/REST-Neo4p-0.4003 - 23 Jan 2022 01:02:57 UTC

REST::Neo4p::Constraint - Application-level Neo4j Constraints River stage one • 1 direct dependent • 1 total dependent

Objects of class REST::Neo4p::Constraint are used to capture and organize REST::Neo4p application level constraints on Neo4j Node and Relationship content. The REST::Neo4p::Constrain module provides a more convenient factory for REST::Neo4p::Constrai...

MAJENSEN/REST-Neo4p-0.4003 - 23 Jan 2022 01:02:57 UTC

REST::Neo4p::Exceptions - Exception::Class objects for REST::Neo4p River stage one • 1 direct dependent • 1 total dependent

MAJENSEN/REST-Neo4p-0.4003 - 23 Jan 2022 01:02:57 UTC

REST::Neo4p::ParseStream - Parse Neo4j REST responses on the fly River stage one • 1 direct dependent • 1 total dependent

This module helps REST::Neo4p exploit the Neo4j <http://neo4j.org> server's chunked transfer encoding of its JSON REST responses. It is based on the fast JSON::XS incremental parser and MJD <https://metacpan.org/author/MJD>'s Higher Order Perl <http:...

MAJENSEN/REST-Neo4p-0.4003 - 23 Jan 2022 01:02:57 UTC

REST::Neo4p::Relationship - Neo4j relationship object River stage one • 1 direct dependent • 1 total dependent

REST::Neo4p::Relationship objects represent Neo4j relationships....

MAJENSEN/REST-Neo4p-0.4003 - 23 Jan 2022 01:02:57 UTC

REST::Neo4p::Constraint::Property - Neo4j Property Constraints River stage one • 1 direct dependent • 1 total dependent

"REST::Neo4p::Constraint::NodeProperty" and "REST::Neo4p::Constraint::RelationshipProperty" are classes that represent constraints on the presence and values of Node and Relationship entities. Constraint hash specification: { _condition => constraint...

MAJENSEN/REST-Neo4p-0.4003 - 23 Jan 2022 01:02:57 UTC

REST::Neo4p::Constraint::Relationship - Neo4j Relationship Constraints River stage one • 1 direct dependent • 1 total dependent

"REST::Neo4p::Constraint::Relationship" is a class that represents constraints on the type and direction of relationships between nodes that satisfy given sets of property constraints. Constraint hash specification: { _condition => <'only'|'none'>, _...

MAJENSEN/REST-Neo4p-0.4003 - 23 Jan 2022 01:02:57 UTC

REST::Neo4p::Constraint::RelationshipType - Neo4j Relationship Type Constraints River stage one • 1 direct dependent • 1 total dependent

"REST::Neo4p::Constraint::RelationshipType" is a class that represent the set of relationship types that Relationships must (or must not) use. Constraint hash specification: { _condition => <'only'|'none'>, _priority => <integer priority>, _type_list...

MAJENSEN/REST-Neo4p-0.4003 - 23 Jan 2022 01:02:57 UTC

lib/REST/Neo4p/Agent/Neo4j/Driver.pm River stage one • 1 direct dependent • 1 total dependent

MAJENSEN/REST-Neo4p-0.4003 - 23 Jan 2022 01:02:57 UTC

lib/REST/Neo4p/Agent/Mojo/UserAgent.pm River stage one • 1 direct dependent • 1 total dependent

MAJENSEN/REST-Neo4p-0.4003 - 23 Jan 2022 01:02:57 UTC

lib/REST/Neo4p/Agent/LWP/UserAgent.pm River stage one • 1 direct dependent • 1 total dependent

MAJENSEN/REST-Neo4p-0.4003 - 23 Jan 2022 01:02:57 UTC
21 results (0.041 seconds)