We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
There is no mechanism to avoid duplicate elements in the current system. To start with,
The text was updated successfully, but these errors were encountered:
For publications CREATE CONSTRAINT publication_doi FOR (p:Publication) REQUIRE p.external_link IS UNIQUE For all nodes
CREATE CONSTRAINT publication_doi FOR (p:Publication) REQUIRE p.external_link IS UNIQUE
Finding duplicates
MATCH (d1:Dataset), (d2:Dataset) WHERE d1.title = d2.title AND NOT d1 = d2 RETURN d1, d2
Sorry, something went wrong.
Endpoint to get list of DOIs and urls. /api/elements/duplicate?<feature-that-needs-to-be-checked-for-duplicate>
DOIs
urls
/api/elements/duplicate?<feature-that-needs-to-be-checked-for-duplicate>
Functionality implemented in 3df827b and a182e19
Things to do
fbaig
No branches or pull requests
There is no mechanism to avoid duplicate elements in the current system. To start with,
The text was updated successfully, but these errors were encountered: