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
In the @knora/core we already had the following methods, which are missing in the lib:
@knora/core
Get
getProjectOntologies(projectIri: string)
'/v2/ontologies/metadata/' + encodeURIComponent(projectIri)
getAllEntityDefinitionsForOntologies(ontologyIri: string)
'/v2/ontologies/allentities/' + encodeURIComponent(ontologyIri)
getResourceClasses(resourceClassIris: Array<string>)
getProperties(propertyIris: string[])
Post
createOntology(data: NewOntology)
createResourceClass(data: NewResourceClass)
createProperty(data: NewProperty[])
not sure about the following
setCardinality(data: any)
The text was updated successfully, but these errors were encountered:
@tobiasschweizer If it's okay, I can add the missing methods...
Sorry, something went wrong.
tobiasschweizer
No branches or pull requests
In the
@knora/core
we already had the following methods, which are missing in the lib:Get
getProjectOntologies(projectIri: string)
Get all ontologies of a specific project; route:'/v2/ontologies/metadata/' + encodeURIComponent(projectIri)
getAllEntityDefinitionsForOntologies(ontologyIri: string)
; route:'/v2/ontologies/allentities/' + encodeURIComponent(ontologyIri)
getResourceClasses(resourceClassIris: Array<string>)
getProperties(propertyIris: string[])
Post
createOntology(data: NewOntology)
createResourceClass(data: NewResourceClass)
createProperty(data: NewProperty[])
not sure about the following
setCardinality(data: any)
The text was updated successfully, but these errors were encountered: