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
RDF-star, embedded triple, RDF*
Being able to write statement-level annotations as RDF-star to the datapod
There are a few ways to abstract this, but something along the lines of:
let newBookThing2 = createThing({ name: "book2" }); // Const addStringNoLocale<T>(thing, property, value, annotation): T newBookThing2 = addStringNoLocale(newBookThing2, SCHEMA.name, "ZYX987 of Example Poetry", [ [SCHEMA.creator, "Miel"] ]); // Alternative, less-invasive Const addAnnotation<T>(property, value): T (picks last added triple) newBookThing2 = addStringNoLocale(newBookThing2, SCHEMA.name, "ZYX987 of Example Poetry"); newBookThing2 = addAnnotation(SCHEMA.creator, "Miel"] ]); // Writes: <> schema:name "ZYX987 of Example Poetry" {| schema:creator "Miel" |}
/
Adding general provenance info to pod data
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Search terms you've used
RDF-star, embedded triple, RDF*
Feature suggestion
Being able to write statement-level annotations as RDF-star to the datapod
Expected functionality/enhancement
There are a few ways to abstract this, but something along the lines of:
Actual functionality/enhancement
/
Use Cases
Adding general provenance info to pod data
The text was updated successfully, but these errors were encountered: