daplug-cypher 1.0.0b1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (30) hide show
  1. daplug_cypher-1.0.0b1/LICENSE +201 -0
  2. daplug_cypher-1.0.0b1/PKG-INFO +377 -0
  3. daplug_cypher-1.0.0b1/README.md +325 -0
  4. daplug_cypher-1.0.0b1/daplug_cypher/__init__.py +13 -0
  5. daplug_cypher-1.0.0b1/daplug_cypher/adapter.py +351 -0
  6. daplug_cypher-1.0.0b1/daplug_cypher/common/__init__.py +11 -0
  7. daplug_cypher-1.0.0b1/daplug_cypher/common/base_adapter.py +69 -0
  8. daplug_cypher-1.0.0b1/daplug_cypher/common/dict_merger.py +66 -0
  9. daplug_cypher-1.0.0b1/daplug_cypher/common/json_helper.py +19 -0
  10. daplug_cypher-1.0.0b1/daplug_cypher/common/logger.py +16 -0
  11. daplug_cypher-1.0.0b1/daplug_cypher/common/publisher.py +29 -0
  12. daplug_cypher-1.0.0b1/daplug_cypher/common/schema_loader.py +13 -0
  13. daplug_cypher-1.0.0b1/daplug_cypher/common/schema_mapper.py +51 -0
  14. daplug_cypher-1.0.0b1/daplug_cypher/cypher/__init__.py +6 -0
  15. daplug_cypher-1.0.0b1/daplug_cypher/cypher/parameters.py +32 -0
  16. daplug_cypher-1.0.0b1/daplug_cypher/cypher/serialization.py +146 -0
  17. daplug_cypher-1.0.0b1/daplug_cypher/types/__init__.py +15 -0
  18. daplug_cypher-1.0.0b1/daplug_cypher/types/dynamo_item.py +7 -0
  19. daplug_cypher-1.0.0b1/daplug_cypher/types/dynamo_items.py +9 -0
  20. daplug_cypher-1.0.0b1/daplug_cypher/types/message_attributes.py +7 -0
  21. daplug_cypher-1.0.0b1/daplug_cypher/types/prefix_config.py +10 -0
  22. daplug_cypher-1.0.0b1/daplug_cypher/types/schema_config.py +11 -0
  23. daplug_cypher-1.0.0b1/daplug_cypher.egg-info/PKG-INFO +377 -0
  24. daplug_cypher-1.0.0b1/daplug_cypher.egg-info/SOURCES.txt +29 -0
  25. daplug_cypher-1.0.0b1/daplug_cypher.egg-info/dependency_links.txt +1 -0
  26. daplug_cypher-1.0.0b1/daplug_cypher.egg-info/not-zip-safe +1 -0
  27. daplug_cypher-1.0.0b1/daplug_cypher.egg-info/requires.txt +5 -0
  28. daplug_cypher-1.0.0b1/daplug_cypher.egg-info/top_level.txt +1 -0
  29. daplug_cypher-1.0.0b1/setup.cfg +14 -0
  30. daplug_cypher-1.0.0b1/setup.py +70 -0
@@ -0,0 +1,201 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright [yyyy] [name of copyright owner]
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.
@@ -0,0 +1,377 @@
1
+ Metadata-Version: 2.4
2
+ Name: daplug-cypher
3
+ Version: 1.0.0b1
4
+ Summary: A Cypher and Neptune graph normalization layer inspired by Trellis data adapters.
5
+ Home-page: https://github.com/dual/daplug-cypher
6
+ Author: Paul Cruse III
7
+ Author-email: paulcruse3@gmail.com
8
+ License: Apache License 2.0
9
+ Project-URL: Homepage, https://github.com/dual/daplug-cypher
10
+ Project-URL: Documentation, https://github.com/dual/daplug-cypher#readme
11
+ Project-URL: Source Code, https://github.com/dual/daplug-cypher
12
+ Project-URL: Bug Reports, https://github.com/dual/daplug-cypher/issues
13
+ Project-URL: CI/CD, https://circleci.com/gh/dual/daplug-cypher
14
+ Keywords: cypher,neptune,graph,bolt,normalizer,schema,sns,event-driven,database,adapter,python-library
15
+ Platform: any
16
+ Classifier: Development Status :: 3 - Alpha
17
+ Classifier: Environment :: Web Environment
18
+ Classifier: Environment :: Console
19
+ Classifier: Intended Audience :: Developers
20
+ Classifier: License :: OSI Approved :: Apache Software License
21
+ Classifier: Operating System :: OS Independent
22
+ Classifier: Topic :: Database :: Front-Ends
23
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
24
+ Classifier: Programming Language :: Python
25
+ Classifier: Programming Language :: Python :: 3
26
+ Classifier: Programming Language :: Python :: 3.9
27
+ Classifier: Programming Language :: Python :: 3.10
28
+ Classifier: Programming Language :: Python :: 3.11
29
+ Classifier: Programming Language :: Python :: 3 :: Only
30
+ Requires-Python: >=3.9
31
+ Description-Content-Type: text/markdown
32
+ License-File: LICENSE
33
+ Requires-Dist: boto3>=1.34
34
+ Requires-Dist: jsonref>=0.2
35
+ Requires-Dist: PyYAML>=5.3
36
+ Requires-Dist: simplejson>=3.17
37
+ Requires-Dist: cypher>=5.13
38
+ Dynamic: author
39
+ Dynamic: author-email
40
+ Dynamic: classifier
41
+ Dynamic: description
42
+ Dynamic: description-content-type
43
+ Dynamic: home-page
44
+ Dynamic: keywords
45
+ Dynamic: license
46
+ Dynamic: license-file
47
+ Dynamic: platform
48
+ Dynamic: project-url
49
+ Dynamic: requires-dist
50
+ Dynamic: requires-python
51
+ Dynamic: summary
52
+
53
+ # ๐Ÿ”— daplug-cypher (daโ€ขplug)
54
+
55
+ > **Schema-Driven Cypher Normalization & Event Publishing for Python**
56
+
57
+ [![CircleCI](https://circleci.com/gh/dual/daplug-cypher.svg?style=shield)](https://circleci.com/gh/dual/daplug-cypher)
58
+ [![Python](https://img.shields.io/badge/python-3.9%2B-blue)](https://www.python.org/downloads/)
59
+ [![License](https://img.shields.io/badge/license-apache%202.0-blue)](LICENSE)
60
+ [![Contributions](https://img.shields.io/badge/contributions-welcome-blue)](https://github.com/paulcruse3/daplug-cypher/issues)
61
+ [![PyPI package](https://img.shields.io/pypi/v/daplug-cypher?color=blue&label=pypi%20package)](https://pypi.org/project/daplug-cypher/)
62
+ [![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=dual_daplug-cypher&metric=alert_status)](https://sonarcloud.io/summary/new_code?id=dual_daplug-cypher)
63
+ [![Bugs](https://sonarcloud.io/api/project_badges/measure?project=dual_daplug-cypher&metric=bugs)](https://sonarcloud.io/summary/new_code?id=dual_daplug-cypher)
64
+ [![Coverage](https://sonarcloud.io/api/project_badges/measure?project=dual_daplug-cypher&metric=coverage)](https://sonarcloud.io/summary/new_code?id=dual_daplug-cypher)
65
+
66
+ `daplug-cypher` brings the ergonomics of an adapter patthern to graph databases. It bundles Cypher-friendly schema mapping, optimistic concurrency, and SNS event fan-out so your graph services stay DRY, version-safe, and event-drivenโ€”whether you deploy to Neo4j or AWS Neptune (openCypher).
67
+
68
+ ## โœจ Key Features
69
+
70
+ - **Unified factory** โ€“ `daplug_cypher.adapter(**kwargs)` returns a ready-to-go adapter with SNS support, just like `daplug_ddb`.
71
+ - **Schema mapping** โ€“ Reuse OpenAPI/JSON schemas to validate and normalize payloads before writing nodes or relationships.
72
+ - **Optimistic concurrency** โ€“ Guard updates with identifier + version keys; the adapter enforces atomic Cypher `SET` semantics.
73
+ - **Relationship helpers** โ€“ Convenience methods that enforce safe Cypher patterns for creating/deleting relationships.
74
+ - **Backend flexibility** โ€“ Supply `bolt={...}` for Neo4j, `neptune={...}` for Neptune, or both; the adapter chooses the right driver config automatically.
75
+ - **Per-operation targeting** โ€“ Pass `node`, `identifier`, and `idempotence_key` to each call so shared adapters can manage multiple labels safely.
76
+ - **Per-call SNS metadata** โ€“ Supply `sns_attributes` when writing to annotate events with request-specific context.
77
+
78
+ ## ๐Ÿš€ Quick Start
79
+
80
+ ### Installation
81
+
82
+ ```bash
83
+ pip install daplug-cypher
84
+ # pipenv install daplug-cypher
85
+ # poetry add daplug-cypher
86
+ # uv pip install daplug-cypher
87
+ ```
88
+
89
+ ### Basic Usage
90
+
91
+ ```python
92
+ from daplug_cypher import adapter
93
+
94
+ graph = adapter(
95
+ bolt={
96
+ "url": "bolt://localhost:7687",
97
+ "user": "neo4j",
98
+ "password": "password",
99
+ },
100
+ schema_file="openapi.yml",
101
+ schema="CustomerModel",
102
+ )
103
+
104
+ payload = {
105
+ "customer_id": "abc123",
106
+ "name": "Ada",
107
+ "version": 1,
108
+ }
109
+
110
+ graph.create(data=payload, node="Customer")
111
+ result = graph.read(
112
+ query="MATCH (c:Customer) WHERE c.customer_id = $id RETURN c",
113
+ placeholder={"id": "abc123"},
114
+ node="Customer",
115
+ )
116
+
117
+ print(result["Customer"][0]["name"])
118
+
119
+ graph.create(
120
+ data=payload,
121
+ node="Customer",
122
+ sns_attributes={"source": "api"},
123
+ )
124
+ ```
125
+
126
+ Because the adapter is schema-aware, every write can opt into mapping by passing `schema`. Skip it when you want to persist the payload exactly as provided. Select the node label (and identifiers) per call so a single adapter can service multiple models, and add `sns_attributes` when you want to decorate published events with request-specific context.
127
+
128
+ ## ๐Ÿ”ง Advanced Configuration
129
+
130
+ ### Public API Cheat Sheet
131
+
132
+ ```python
133
+ from daplug_cypher import adapter
134
+
135
+ graph = adapter(bolt={"url": "bolt://localhost:7687", "user": "neo4j", "password": "password"})
136
+
137
+ # CREATE ---------------------------------------------------------------
138
+ graph.create(
139
+ data={"customer_id": "abc123", "name": "Ada", "version": 1},
140
+ node="Customer",
141
+ sns_attributes={"event": "customer-created"},
142
+ )
143
+
144
+ # READ / MATCH ---------------------------------------------------------
145
+ graph.read(
146
+ query="MATCH (c:Customer) WHERE c.customer_id = $id RETURN c",
147
+ placeholder={"id": "abc123"},
148
+ node="Customer",
149
+ )
150
+
151
+ # QUERY (raw parameterized Cypher) ------------------------------------
152
+ graph.query(
153
+ query="MATCH (c:Customer) WHERE c.customer_id = $id RETURN c",
154
+ placeholder={"id": "abc123"},
155
+ sns_attributes={"source": "reporting"},
156
+ )
157
+
158
+ # UPDATE (optimistic) --------------------------------------------------
159
+ graph.update(
160
+ data={"status": "vip"},
161
+ query="MATCH (c:Customer) WHERE c.customer_id = $id RETURN c",
162
+ placeholder={"id": "abc123"},
163
+ original_idempotence_value=1,
164
+ node="Customer",
165
+ identifier="customer_id",
166
+ idempotence_key="version",
167
+ sns_attributes={"event": "customer-updated"},
168
+ )
169
+
170
+ # DELETE ---------------------------------------------------------------
171
+ graph.delete(
172
+ delete_identifier="abc123",
173
+ node="Customer",
174
+ identifier="customer_id",
175
+ sns_attributes={"event": "customer-deleted"},
176
+ )
177
+
178
+ # RELATIONSHIP HELPERS -------------------------------------------------
179
+ graph.create_relationship(
180
+ query="""
181
+ MATCH (c:Customer), (o:Order)
182
+ WHERE c.customer_id = $customer AND o.order_id = $order
183
+ CREATE (c)-[:PLACED]->(o)
184
+ RETURN c, o
185
+ """,
186
+ placeholder={"customer": "abc123", "order": "o-789"},
187
+ sns_attributes={"event": "relationship-created"},
188
+ )
189
+
190
+ graph.delete_relationship(
191
+ query="""
192
+ MATCH (c:Customer)-[r:PLACED]->(o:Order)
193
+ WHERE c.customer_id = $customer AND o.order_id = $order
194
+ DETACH DELETE r
195
+ """,
196
+ placeholder={"customer": "abc123", "order": "o-789"},
197
+ sns_attributes={"event": "relationship-deleted"},
198
+ )
199
+ ```
200
+
201
+ Each method mirrors the DynamoDB adapter API: provide per-call metadata, and the adapter handles schema normalization, optimistic locking, driver orchestration, and optional SNS fan-out.
202
+
203
+ ### Neo4j & Neptune Targets
204
+
205
+ ```python
206
+ graph = adapter(
207
+ bolt={"url": "bolt://localhost:7687", "user": "neo4j", "password": "password"},
208
+ neptune={"url": "bolt://neptune-endpoint:8182", "user": "user", "password": "secret"},
209
+ )
210
+ ```
211
+
212
+ Provide both dictionaries to allow local Neo4j development with a production Neptune endpoint. When `neptune` is supplied it wins; otherwise `bolt` is used.
213
+ Use the same adapter instance for different node types by passing the appropriate label to each call (e.g., `graph.create(..., node="Order")`).
214
+
215
+ ### Optimistic Updates
216
+
217
+ ```python
218
+ graph.update(
219
+ data={"order_id": "abc123", "updated_at": 2, "status": "shipped"},
220
+ query="MATCH (o:Order) WHERE o.order_id = $id RETURN o",
221
+ placeholder={"id": "abc123"},
222
+ original_idempotence_value=1, # the previous value of updated_at
223
+ node="Order",
224
+ identifier="order_id",
225
+ idempotence_key="updated_at",
226
+ sns_attributes={"event": "status-change"},
227
+ )
228
+ ```
229
+
230
+ If another session updates the node first, the adapter raises `ValueError("ATOMIC ERROR...")` rather than overwriting silently.
231
+
232
+ ### Relationship Helpers
233
+
234
+ ```python
235
+ graph.create(data={"customer_id": "abc123", "version": 1}, node="Customer")
236
+ graph.create(data={"order_id": "o-789", "version": 1}, node="Order")
237
+
238
+ graph.create_relationship(
239
+ query="""
240
+ MATCH (c:Customer), (o:Order)
241
+ WHERE c.customer_id = $customer AND o.order_id = $order
242
+ CREATE (c)-[:PLACED]->(o)
243
+ RETURN c, o
244
+ """,
245
+ placeholder={"customer": "abc123", "order": "o-789"},
246
+ )
247
+
248
+ graph.delete_relationship(
249
+ query="""
250
+ MATCH (c:Customer)-[r:PLACED]->(o:Order)
251
+ WHERE c.customer_id = $customer AND o.order_id = $order
252
+ DETACH DELETE r
253
+ """,
254
+ placeholder={"customer": "abc123", "order": "o-789"},
255
+ )
256
+ ```
257
+
258
+ Validation ensures relationship queries include edge notation and destructive operations actually delete nodes/relationships.
259
+
260
+ ### SNS Event Publishing
261
+
262
+ ```python
263
+ graph = adapter(
264
+ bolt={...},
265
+ sns_arn="arn:aws:sns:us-east-2:123456789012:customers",
266
+ sns_attributes={"service": "crm"},
267
+ )
268
+
269
+ graph.delete(delete_identifier="abc123", node="Customer", identifier="customer_id")
270
+ ```
271
+
272
+ Each write publishes an event with merged attributes (`operation`, default adapter attributes, custom attributes, and call-specific overrides).
273
+
274
+ ## ๐Ÿงช Testing
275
+
276
+ We split fast unit tests from integration suites targeting Neo4j and Neptune-compatible endpoints.
277
+
278
+ ```bash
279
+ # Unit tests (pure Python, heavy mocking)
280
+ pipenv run test
281
+
282
+ # Integration suites
283
+ pipenv run test_neo4j # requires Neo4j Bolt endpoint (defaults to bolt://localhost:7687)
284
+ pipenv run test_neptune # reuses Bolt settings, can point at Neptune or LocalStack
285
+
286
+ # Coverage (Neo4j suite under coverage)
287
+ pipenv run coverage
288
+ ```
289
+
290
+ Environment variables to override defaults:
291
+
292
+ | Variable | Purpose | Default |
293
+ | ---------------------- | ---------------------------------- | --------------------- |
294
+ | `NEO4J_BOLT_URL` | Neo4j Bolt connection URI | `bolt://localhost:7687` |
295
+ | `NEO4J_USER` / `_PASSWORD` | Neo4j credentials | `neo4j` / `password` |
296
+ | `NEPTUNE_BOLT_URL` | Neptune Bolt-compatible endpoint | falls back to Neo4j |
297
+ | `NEPTUNE_USER` / `_PASSWORD` | Neptune credentials | falls back to Neo4j |
298
+
299
+ ## ๐Ÿงฐ Tooling & CI
300
+
301
+ `.circleci/config.yml` mirrors the DynamoDB project:
302
+
303
+ - `install-build` installs dependencies and persists the workspace.
304
+ - `lint` and `type-check` run `pipenv run lint` and `pipenv run mypy`.
305
+ - `test-neo4j` and `test-neptune` run pytest markers in parallel; the Neptune job provisions a LocalStack container for compatibility checks.
306
+ - `install-build-publish` retains the token-based PyPI workflow.
307
+
308
+ ## ๐Ÿ› ๏ธ Local Development
309
+
310
+ ### Prerequisites
311
+
312
+ - Python **3.9+**
313
+ - [Pipenv](https://pipenv.pypa.io/)
314
+ - Docker (for running Neo4j or LocalStack locally)
315
+
316
+ ### Environment Setup
317
+
318
+ ```bash
319
+ git clone https://github.com/paulcruse3/daplug-cypher.git
320
+ cd daplug-cypher
321
+ pipenv install --dev
322
+ ```
323
+
324
+ ### Workflow
325
+
326
+ ```bash
327
+ pipenv run lint # pylint (JSON + HTML report)
328
+ pipenv run mypy # static typing (post-phase polish)
329
+ pipenv run test # unit tests
330
+ pipenv run test_neo4j # integration suite (requires Bolt endpoint)
331
+ pipenv run test_neptune # integration suite (LocalStack/Neptune)
332
+ ```
333
+
334
+ When running Neo4j via Docker, set `NEO4J_AUTH=neo4j/password` before `docker run` so the tests can authenticate automatically.
335
+
336
+ ## ๐Ÿ—‚๏ธ Project Structure
337
+
338
+ ```txt
339
+ daplug-cypher/
340
+ โ”œโ”€โ”€ daplug_cypher/
341
+ โ”‚ โ”œโ”€โ”€ adapter.py # Cypher adapter implementation
342
+ โ”‚ โ”œโ”€โ”€ common/ # Shared schema, merge, logging, publisher helpers
343
+ โ”‚ โ”œโ”€โ”€ cypher/ # Parameter + serialization utilities
344
+ โ”‚ โ”œโ”€โ”€ types/ # Shared TypedDict/type aliases (reused by common)
345
+ โ”‚ โ””โ”€โ”€ __init__.py # Public adapter factory & exports
346
+ โ”œโ”€โ”€ tests/
347
+ โ”‚ โ”œโ”€โ”€ integration/ # Neo4j & Neptune pytest suites
348
+ โ”‚ โ””โ”€โ”€ unit/ # Mock-based unit coverage for every module
349
+ โ”œโ”€โ”€ .circleci/config.yml # CI pipeline
350
+ โ”œโ”€โ”€ Pipfile # Runtime & dev dependencies + scripts
351
+ โ”œโ”€โ”€ setup.py / setup.cfg # Packaging metadata & pytest config
352
+ โ””โ”€โ”€ README.md # You are here
353
+ ```
354
+
355
+ ## ๐Ÿค Contributing
356
+
357
+ We welcome issues and pull requests! Please ensure linting, typing, and both integration suites pass before submitting.
358
+
359
+ ```bash
360
+ git checkout -b feature/amazing-cypher
361
+ # make your changes
362
+ pipenv run lint
363
+ pipenv run mypy
364
+ pipenv run test
365
+ pipenv run test_neo4j
366
+ pipenv run test_neptune
367
+ git commit -am "feat: amazing cypher enhancement"
368
+ git push origin feature/amazing-cypher
369
+ ```
370
+
371
+ ## ๐Ÿ“„ License
372
+
373
+ Apache License 2.0 โ€“ see [LICENSE](LICENSE) for the full text.
374
+
375
+ ---
376
+
377
+ > Built to keep Cypher integrations as clean and predictable