Adding facility location to user guide#775
Open
CBP1012 wants to merge 15 commits intoCommonCoreOntology:developfrom
Open
Adding facility location to user guide#775CBP1012 wants to merge 15 commits intoCommonCoreOntology:developfrom
CBP1012 wants to merge 15 commits intoCommonCoreOntology:developfrom
Conversation
| Comes in hand when representing documents with multiple fields, so that we can link more than one ICE to the same IBE. | ||
|
|
||
| ## Structure | ||
| The document has as parts two document fields. One of them carries one ICE, specifically a designative Name. |
Contributor
There was a problem hiding this comment.
Which document is being refered to by "The document" in Structure section, What do you mean when you say "so we can link more than one ICE to the same IBE"
In addition, the title of the PR seems wrong since most of these files are about document fields?
Contributor
There was a problem hiding this comment.
Please consider the following style, which make the query more readable:
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX cco: <https://www.commoncoreontologies.org/>
PREFIX obo: <http://purl.obolibrary.org/obo/>
PREFIX material_copy_of_a_document: <https://www.commoncoreontologies.org/ont00001298>
PREFIX has_continuant_part: <http://purl.obolibrary.org/obo/BFO_0000178>
PREFIX material_copy_of_a_document_field: <https://www.commoncoreontologies.org/ont00001243>
SELECT ?document (COUNT(?field) AS ?fieldCount)
WHERE {
?document rdf:type material_copy_of_a_document: .
?document has_continuant_part: ?field .
?field rdf:type material_copy_of_a_document_field:.
}
GROUP BY ?documentThat said, I don't know why you are using IBEs v ICEs in this pattern.
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
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.
The purpose of this pull request is to contribute to the user guide.
This pattern includes mermaid file, SPARQL queries and a readme describing the purpose of the pattern.
Also wanted feedback on the pattern and make sure we are good to use this in a paper.