-
Notifications
You must be signed in to change notification settings - Fork 855
Allow addEdge() to take vertex ids in the JS library #651
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
Merged
Conversation
This file contains hidden or 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
moonglum
added a commit
that referenced
this pull request
Oct 31, 2013
Allow addEdge() to take vertex ids in the JS library
Also closes #528 |
KVS85
pushed a commit
that referenced
this pull request
Nov 12, 2019
* extract recursive part of IResearchLinkMeta * avoid saving analyzer definition during link meta initialization * add tests to check cluster deadlock * cleanup * code cleanup * add moar tests * mooooaaar checks * make jslint happy * backport fix for cluster startup from 3.5.2 branch * backport changes from 3.5.2 * fix tests * fix tests * moar fixes * refactor analyzer definitions tracking * add some tests * extend dump tests * add tests for replication * fix tests * more fixes * address jslint errors * address review comments * address test failures * reflect changes in changelog
gnusi
added a commit
that referenced
this pull request
Nov 13, 2019
* extract recursive part of IResearchLinkMeta * avoid saving analyzer definition during link meta initialization * add tests to check cluster deadlock * cleanup * code cleanup * add moar tests * mooooaaar checks * make jslint happy * backport fix for cluster startup from 3.5.2 branch * backport changes from 3.5.2 * fix tests * fix tests * moar fixes * refactor analyzer definitions tracking * add some tests * extend dump tests * add tests for replication * fix tests * more fixes * address jslint errors * address review comments * address test failures * reflect changes in changelog # Conflicts: # arangod/IResearch/IResearchAnalyzerFeature.cpp # arangod/IResearch/IResearchFilterFactory.cpp # arangod/IResearch/IResearchLink.cpp # arangod/IResearch/IResearchLinkMeta.cpp # tests/IResearch/IResearchAnalyzerFeature-test.cpp # tests/IResearch/IResearchDocument-test.cpp # tests/IResearch/IResearchFilterBoolean-test.cpp # tests/IResearch/IResearchFilterCompare-test.cpp # tests/IResearch/IResearchFilterFunction-test.cpp # tests/IResearch/IResearchFilterIn-test.cpp # tests/IResearch/IResearchLinkHelper-test.cpp # tests/IResearch/IResearchLinkMeta-test.cpp # tests/IResearch/IResearchView-test.cpp # tests/V8Server/v8-analyzers-test.cpp
gnusi
added a commit
that referenced
this pull request
Nov 13, 2019
* Bug fix 3.5/internal issue #651 (#10388) * extract recursive part of IResearchLinkMeta * avoid saving analyzer definition during link meta initialization * add tests to check cluster deadlock * cleanup * code cleanup * add moar tests * mooooaaar checks * make jslint happy * backport fix for cluster startup from 3.5.2 branch * backport changes from 3.5.2 * fix tests * fix tests * moar fixes * refactor analyzer definitions tracking * add some tests * extend dump tests * add tests for replication * fix tests * more fixes * address jslint errors * address review comments * address test failures * reflect changes in changelog # Conflicts: # arangod/IResearch/IResearchAnalyzerFeature.cpp # arangod/IResearch/IResearchFilterFactory.cpp # arangod/IResearch/IResearchLink.cpp # arangod/IResearch/IResearchLinkMeta.cpp # tests/IResearch/IResearchAnalyzerFeature-test.cpp # tests/IResearch/IResearchDocument-test.cpp # tests/IResearch/IResearchFilterBoolean-test.cpp # tests/IResearch/IResearchFilterCompare-test.cpp # tests/IResearch/IResearchFilterFunction-test.cpp # tests/IResearch/IResearchFilterIn-test.cpp # tests/IResearch/IResearchLinkHelper-test.cpp # tests/IResearch/IResearchLinkMeta-test.cpp # tests/IResearch/IResearchView-test.cpp # tests/V8Server/v8-analyzers-test.cpp * fix tests * fix tests * Fix tests * fix replication tests
ObiWahn
added a commit
that referenced
this pull request
Nov 14, 2019
…nto feature/switch-some-scripts-to-python3 * 'devel' of https://github.com/arangodb/arangodb: (107 commits) fix description of NetworkFeature options Bug fix/dont use indexes in progress (#10432) rename `lib_libarango_shell` to `libarango_shell`. (#10433) fix issues found by cppcheck (#10434) Remove IndexHandle (#10424) fix invalid assertion (#10429) no coordinators left behind (#10422) fix compile warning in AnalyzerFeature test allow using `RANDOM_TOKEN` AQL function with an argument value of `0`. (#10414) centralize cloning functionality for AstNodes (#10430) Don't modify a finalized node. (#10419) Bug fix/internal issue #651 (#10415) show index type in not implemented exception (#10426) Parallel SortingGatherExecutor (#10410) "run with --log v8=debug" to see the stacktraces of logged error messages (#10373) ARANGODB_UPGRADE_DURING_RESTORE env variable. (#10385) add optional exclusive writes to rocksdb engine (#10364) attempt to make test more deterministic Feature/parallel aql phase one 2 (#10408) Improve syncer error message (#10403) ...
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.
Original Issue: 528
Currently, this works:
However, sometimes, I have the ID of a vertex, but not a reference to
it. I can of course, ask ArangoDB to retrieve the vertex and then use it
with
addEdge()
, but that's not efficient.I would love to be able to do this: