You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 30, 2024. It is now read-only.
We have shui:Viewer, shui:Editor and now we need to find a good name for the Filter / QueryBuilder concept described in #16.
An example could be:
shapes:Person
a sh:NodeShape ;
sh:targetClass schema:Person ;
rdfs:label "Person"@en ;
sh:property [
sh:name "Family name"@en ;
sh:path schema:familyName ;
sh:datatype xsd:string ;
sh:minCount 1 ;
sh:maxCount 1 ;
shui:filter shui:TextFilter ; <-----------------this issue is about the 'filter' part of these names.
] .
This would give a form that shows a text input, typing 'Baker' in that text input would ultimately generate a SPARQL query which would filter to schema:Persons that have the schema:familyName of 'Baker'.