{"id":21850546,"url":"https://github.com/neo4j-php/cypher-data-structures","last_synced_at":"2025-09-07T21:37:12.118Z","repository":{"id":57894328,"uuid":"528886918","full_name":"neo4j-php/cypher-data-structures","owner":"neo4j-php","description":"Data structures for the Cypher query language","archived":false,"fork":false,"pushed_at":"2025-02-15T12:23:46.000Z","size":545,"stargazers_count":2,"open_issues_count":3,"forks_count":2,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-10T23:29:20.422Z","etag":null,"topics":["cypher","neo4j","php"],"latest_commit_sha":null,"homepage":"https://syndesi.github.io/cypher-data-structures","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/neo4j-php.png","metadata":{"files":{"readme":"Readme.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2022-08-25T14:27:46.000Z","updated_at":"2025-02-15T12:19:29.000Z","dependencies_parsed_at":"2025-02-15T13:21:13.555Z","dependency_job_id":"e98095a1-a71a-4222-98b7-357c83fcd248","html_url":"https://github.com/neo4j-php/cypher-data-structures","commit_stats":null,"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"purl":"pkg:github/neo4j-php/cypher-data-structures","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neo4j-php%2Fcypher-data-structures","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neo4j-php%2Fcypher-data-structures/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neo4j-php%2Fcypher-data-structures/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neo4j-php%2Fcypher-data-structures/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/neo4j-php","download_url":"https://codeload.github.com/neo4j-php/cypher-data-structures/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neo4j-php%2Fcypher-data-structures/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":274101131,"owners_count":25222444,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-07T02:00:09.463Z","response_time":67,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cypher","neo4j","php"],"created_at":"2024-11-28T00:18:04.772Z","updated_at":"2025-09-07T21:37:12.090Z","avatar_url":"https://github.com/neo4j-php.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![GitHub](https://img.shields.io/github/license/neo4j-php/cypher-data-structures)](https://github.com/neo4j-php/cypher-data-structures/blob/main/LICENSE)\n![Packagist PHP Version Support (specify version)](https://img.shields.io/packagist/php-v/syndesi/cypher-data-structures/dev-main)\n![Packagist Version](https://img.shields.io/packagist/v/syndesi/cypher-data-structures)\n![Packagist Downloads](https://img.shields.io/packagist/dm/syndesi/cypher-data-structures)\n\n[![Test Coverage](https://api.codeclimate.com/v1/badges/3a6aef038839e5bb5b59/test_coverage)](https://codeclimate.com/github/Syndesi/cypher-data-structures/test_coverage)\n[![Maintainability](https://api.codeclimate.com/v1/badges/3a6aef038839e5bb5b59/maintainability)](https://codeclimate.com/github/Syndesi/cypher-data-structures/maintainability)\n\n# Syndesi's Cypher Data Structures\n\nThis library provides basic data classes, so that working with Cypher based graph databases becomes easy.\n\n- [Documentation](https://neo4j-php.github.io/cypher-data-structures)\n- [Packagist](https://packagist.org/packages/syndesi/cypher-data-structures)\n\n## Installation\n\nTo install this library, run the following code:\n\n```bash\ncomposer require syndesi/cypher-data-structures\n```\n\nThis is all, now you can use the library :D\n\n## Using the library\n\n```php\nuse Syndesi\\CypherDataStructures\\Type\\Node;\nuse Syndesi\\CypherDataStructures\\Type\\Relation;\n\n$node = new Node();\n$node\n    -\u003eaddLabel('NodeLabel')\n    -\u003eaddIdentifier('id', 123)\n    -\u003eaddProperty('someProperty', 'someValue')\n    -\u003eaddIdentifier('id');\n\n$otherNode = new Node();\n$otherNode\n    -\u003eaddLabel('OtherNodeLabel')\n    -\u003eaddIdentifier('id', 234)\n    -\u003eaddProperty('hello', 'world :D')\n    -\u003eaddIdentifier('id');\n\n$relation = new Relation();\n$relation\n    -\u003esetStartNode($node)\n    -\u003esetEndNode($node)\n    -\u003esetType('SOME_RELATION');\n```\n\n## Advanced integration\n\nThis library itself does not provide advanced features like validation. Those are separated into their own projects:\n\n- Validation: Work in progress, not yet released.\n- [Entity Manager](https://github.com/neo4j-php/cypher-entity-manager): Automatically creates and runs Cypher statements\n  from data objects of this library for you.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fneo4j-php%2Fcypher-data-structures","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fneo4j-php%2Fcypher-data-structures","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fneo4j-php%2Fcypher-data-structures/lists"}