Matt Wonlaw

Results 107 issues of Matt Wonlaw

How much of the framework can we move to Rust such that we can compile a core library for use in different platforms. E.g., Swift, Kotlin. `specAndOpsToQuery` is an obvious...

exploratory

the migration framework only supports regular table creation and modification. Have no support for index creation or modification yet.

priority:high
migration

Should we allow defining edges without defining id fields?? ``` Foo as Node { blahId: ID } & OutboundEdges { blah: Edge } ``` to: ``` Foo as Node {...

devx

If schema definitions are removed, remove the generated code too.

priority:high
devx

like #57 but a language server component for auto-complete.

priority:medium

https://github.com/tantaman/aphrodite/tree/main/packages/vscode provides syntax highlighting support for Aphrodite schemas. We should complete and publish this extension ![Screen Shot 2022-08-19 at 2 00 01 PM](https://user-images.githubusercontent.com/1009003/185679561-05eb6c10-c8e8-489c-996c-2629d0547398.png)

priority:high
devx

Todo lists barely require any interesting functionality. Re-write strut to use Aphrodite and/or some other non-trivial apps.

priority:medium

If a user strictly performs optimistic writes (without awaiting for the write to complete) they can issue a read that doesn't return what they expect. The current design requires hitting...

query-layer
priority:medium
optimistic-writes

Some sort of modifier to allow returning the node that was traversed when doing nested traversals. Similar to: https://entgo.io/docs/eager-load

query-layer
priority:medium

@databases connections do not support 64 bit ints. They silently get truncated. better-sqlite returns everything as bigints. Not great. sqlite-3 has a fork that returns ints as strings if they'd...

bug