Created
February 22, 2018 13:32
-
-
Save krux02/bcebfc3e9443b485e9d24f4f61668416 to your computer and use it in GitHub Desktop.
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
| type | |
| PublicationData = object | |
| title*: string | |
| date*: string | |
| uri*: option[string] | |
| recordId*: int | |
| Publisher = string | |
| Keyword = string | |
| graphDsl(PublicationGraph): | |
| debug | |
| nodeTypes: | |
| Publication = PublicationData | |
| Project | |
| Outlet | |
| Author | |
| Keyword | |
| Publisher | |
| Institute | |
| connectivity: | |
| Publication * .. 1 Publisher | |
| Publication * .. * Project | |
| Publication * .. 1 Outlet | |
| Publication * .. * Author | |
| Publication * .. 1 Institute | |
| Publication * .. * Keyword |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment