-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat!: JSON RPC based typegraph #877
base: main
Are you sure you want to change the base?
Conversation
3b15fe7
to
fe5318b
Compare
5e1517a
to
eb2db29
Compare
b59e73a
to
a2c02cb
Compare
d8dab24
to
4de7198
Compare
[skip ci]
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #877 +/- ##
==========================================
+ Coverage 77.69% 81.40% +3.70%
==========================================
Files 149 127 -22
Lines 18509 16458 -2051
Branches 1794 1740 -54
==========================================
- Hits 14381 13397 -984
+ Misses 4105 3038 -1067
Partials 23 23 ☔ View full report in Codecov by Sentry. 🚨 Try these New Features:
|
@@ -74,8 +73,9 @@ def build_reduce_entries(node: Any, paths: List[ReduceEntry], curr_path: List[st | |||
raise Exception(f"unsupported type {type(node)} at {'.'.join(curr_path)}") | |||
|
|||
|
|||
def unpack_tarb64(tar_b64: str, dest: str): | |||
return wit_utils.unpack_tarb64(store, tar_b64, dest) | |||
# FIXME: What is this? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is used to unpack migrations that are returned from tg_deploy
. Might be best to do the unpacking inside the typegraph itself now.
const POSTGRES = | ||
"postgresql://postgres:password@localhost:5432/db?schema=injection_test_prisma"; | ||
`postgresql://postgres:password@localhost:5432/db?schema=${schema}`; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why not schemaName
?
6416c1a
to
fbb7287
Compare
Tasks
Replace WASM in typegraph with a client/server architecture using JSON RPC through stdin/stdout.
typgraph-core
Migration notes
...