-
Notifications
You must be signed in to change notification settings - Fork 46
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
Define queries support in TypeQL Rust #240
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PR Review ChecklistDo not edit the content of this comment. The PR reviewer should simply update this comment by ticking each review item below, as they get completed. Code
Architecture
|
dmitrii-ubskii
commented
Oct 24, 2022
dmitrii-ubskii
commented
Oct 24, 2022
dmitrii-ubskii
changed the title
Schema queries support in TypeQL Rust
Define queries support in TypeQL Rust
Oct 25, 2022
alexjpwalker
requested changes
Oct 25, 2022
dmitrii-ubskii
force-pushed
the
typeql-rust
branch
from
October 25, 2022 16:25
dc6a462
to
8bdc4a0
Compare
dmitrii-ubskii
force-pushed
the
typeql-rust
branch
from
October 25, 2022 16:34
108e76f
to
dd826de
Compare
dmitrii-ubskii
force-pushed
the
typeql-rust
branch
2 times, most recently
from
October 25, 2022 16:44
65bba94
to
0e977ae
Compare
dmitrii-ubskii
force-pushed
the
typeql-rust
branch
from
October 25, 2022 17:05
0e977ae
to
245fe43
Compare
dmitrii-ubskii
force-pushed
the
typeql-rust
branch
from
October 25, 2022 17:06
245fe43
to
246da90
Compare
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.
Left some comments.
alexjpwalker
approved these changes
Oct 26, 2022
haikalpribadi
approved these changes
Oct 26, 2022
alexjpwalker
pushed a commit
to alexjpwalker/typeql
that referenced
this pull request
Nov 2, 2022
## What is the goal of this PR? We add support for schema queries, viz. `define`/`undefine`, and schema query concepts such as rules. ## What are the changes implemented in this PR? Implement data structures, builder functions, and parser visitors for: - `define` query; - `undefine` query; - `rule`; - `abstract`. Misc: - factored out common parser boilerplate; - polished off the overridden type handling in `owns` and `plays` and fixed some bugs related to them; - migrated from Grabl to Vaticle Factory.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
What is the goal of this PR?
We add support for schema queries, viz.
define
/undefine
, and schema query concepts such as rules.What are the changes implemented in this PR?
Implement data structures, builder functions, and parser visitors for:
define
query;undefine
query;rule
;abstract
.Misc:
owns
andplays
and fixed some bugs related to them;