assemblee-virtuelle / assemblee-virtuelle/semapps
Add a `search` parameter to the LDP container service
- Dominant language
- TypeScript
- Stars
- 103
- Forks
- 14
- Avg merge
- 1m
- Merged PRs (30d)
- 2
Description
Modify `ldp.container.get` to accept an (optional) `search` parameter that would return only those container resources that contain the keyword.
Based on @simonLouvet's request:
```
{
SELECT ?s1
WHERE {
?s1 ?p1 ?o1 .
FILTER regex(str(?o1), “${filter.q}”)
FILTER NOT EXISTS { ?s1 a ?o1}
}
}
```
For the moment, do not make this parameter available via the API.
Contributor guide
No contributing guide indexed for this repository
Research direction
Start at the ldp.container.get service entry point and trace how container resources are selected. Use the supplied SPARQL query as the behavioral reference; done means an optional search value filters matching resources while the parameter remains unavailable through the API.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- typescript
- Domain
- backend
- Issue type
- Feature
- Difficulty
- 3/5
- Estimated time
- 1-2 days
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 35/100