-
Notifications
You must be signed in to change notification settings - Fork 10
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
REL-1198: List value URI definition should work with neo4j RDF storage. #1075
Conversation
1820fd2
to
9cbb8a7
Compare
93296c4
to
eb99b90
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.
Great job!
Tested locally with sql and neo4j databases and updating uri functionality for lists works without issues.
- New code respects code style rules
- New code respects best practices
- New code is not subject to concurrency issues (if applicable)
- Feature is working correctly on my local machine (if applicable)
- Acceptance criteria are respected
- Pull request title and description are meaningful
- Pull request's target is not master
- Commits are following conventional commits
- Commits messages are meaningful
- Commits are atomic
$result = $this->fetchTripleList( | ||
parent::searchTriples($Builder, $propertyUri, $isDistinct) | ||
); | ||
return new $this->resultSetClassName($result, count($result)); |
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.
nitpick: Adding empty line before return
statement here and in other methods looks like a good idea
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.
will fix
/** | ||
* Changes class URI for all its properties and linked objects. | ||
* | ||
* @param core_kernel_classes_Class $resource |
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.
Not important at all, but just thought if we have type hinting in method declaration we don't need to add them to phpdoc. Wdyt?
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.
I totally agree. Will fix.
…used duplicate of the item.
…e in the child operations.
…tion path was not built properly.
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.
Looking good and working good for me
- New code is covered by tests (if applicable)
- Tests are running successfully (old and new ones) on my local machine (if applicable)
- New code is respecting code style rules
- New code is respecting best practices
- New code is not subject to concurrency issues (if applicable)
- Feature is working correctly on my local machine (if applicable)
- Acceptance criteria are respected
- Pull request title and description are meaningful
- Changelog is updated according to changes (if applicable)
- Documentation is updated according to changes (if applicable)
Version
There are 0 BREAKING CHANGE, 1 feature, 7 fixes |
Goal
List value URIs can be modified via user interface. Yet implementation is modifying SQL statements table directly, and would not work with neo4j RDF storage.
Changelog
Dependencies
oat-sa/lib-generis-search#32