Archival backend providing core set of APIs and administrative pages.

Prasoon fc562b22d5 major restructuring of code 4 роки тому
app fc562b22d5 major restructuring of code 4 роки тому
conf fc562b22d5 major restructuring of code 4 роки тому
gradle 54d75142ef basic data model 5 роки тому
out fc562b22d5 major restructuring of code 4 роки тому
project 7cb4434a3f generated EAD models and parsers 5 роки тому
public 54d75142ef basic data model 5 роки тому
test fc562b22d5 major restructuring of code 4 роки тому
.gitignore fc562b22d5 major restructuring of code 4 роки тому
LICENSE.md 08e5b7e5b1 updated to GPL3 4 роки тому
QORE.iml fc562b22d5 major restructuring of code 4 роки тому
README.md e30cb07f8e cleanup 4 роки тому
build.gradle fc562b22d5 major restructuring of code 4 роки тому
build.sbt fc562b22d5 major restructuring of code 4 роки тому
gradlew 54d75142ef basic data model 5 роки тому
gradlew.bat 54d75142ef basic data model 5 роки тому
sample payload 7cb4434a3f generated EAD models and parsers 5 роки тому

README.md

QORE

Archival backend providing core set of APIs and administrative pages.

Running the project locally

To run the project locally, you must have sbt installed (version 1.0+). cd into the root of the project and execute sbt run. This would start an sbt shell and run the project on the default port. From here on, you can play with the application using GraphiQL or any other GraphQL compliant application (or by simply using cUrl).

GraphQl API usage

A query like such:

{
  allCollections {
    id
  },
  collection(id : "f8b405d6-fc4f-4ae8-adeb-7ddb07b758bd") {
    archdesc {
      did {
        id
      }
      archdescoption {
        ... scopeContent
      }
    }
  }
}

fragment scopeContent on scopecontent {
  scopecontentoption {
    ... on p {
      mixed {
        ... on text {
          text
        }
      }
    }
  }
}

would result in:

{
  "data": {
    "allCollections": [
      {
        "id": "f8b405d6-fc4f-4ae8-adeb-7ddb07b758bd"
      }
    ],
    "collection": {
      "archdesc": {
        "did": {
          "id": null
        },
        "archdescoption": [
          {},
          {
            "scopecontentoption": [
              {
                "mixed": [
                  {
                    "text": "The Lowell Thomas Papers encompasses a wide range of materials documenting the life, family, and professional career of Lowell Thomas. These materials include correspondence, administrative and financial documents, manuscripts, printed materials, photographic materials, motion picture films, audio recordings, and memorabilia."
                  }
                ]
              }
            ]
          },
          {},
          {},
          {}
        ]
      }
    }
  }
}

Contribution | Collaboration

The project board is available at:

https://tree.taiga.io/project/prasoon-qore/timeline

Caution

This project is under active development and is bound to change rapidly.