Matthieu Fesselier
Matthieu Fesselier
On a container of 600 resources, if I measure how long it takes to loop over all elements and show 2 properties I have the following results: ```js await solid.data.context.extend({...
Support i18n
Is internationalization currently supported? If yes, how are we able to get language-specific data from a node?
I face performances issues when accessing datas on a container. It makes all our apps not useable for now with LDFlex. For example, with the following code: ```javascript await solid.data.context.extend(base_context)...
If I try to get a property starting by `@`, like the JSONLD keywords, I get an error: ```javascript await solid.data.context.extend(base_context) const type = solid.data["https://api.coopstarter.happy-dev.fr/resources/1/"]['@type'] console.log(`${await type}`) // Uncaught (in...
Is it expected that, with this: ```javascript await solid.data.context.extend(base_context) const resource = solid.data['https://api.coopstarter.happy-dev.fr/resources/1/'] ``` This works: ```javascript console.log((await resource['rdf:type']).toString()); // "coopstarter:resource" console.log((await resource.resolve('["rdf:type"]')).toString()); // "coopstarter:resource" console.log((await resource.resolve('rdf_type')).toString()); // "coopstarter:resource" ```...
When using the function `properties` on a resource or a container, I get a list of expanded properties ([example](https://solid.github.io/ldflex-playground/#%5Bhttps%3A%2F%2Fjairocr.inrupt.net%2Fpublic%2Fform.ttl%23addressesComment%5D.properties)) Shouldn't it be compacted? It seems like LDFlex is doing it,...
As you explain in the [documentation](https://github.com/solid/query-ldflex#specifying-properties), the semi-colon can be substituted by the underscores in property names. In my example, I have a property name containing an underscore, and I...
As we sometimes use the resource ids in URLs, we would like to use reduced ids to make it cleaner. I expected the following code to work but I get...
My current context is: ```javascript { '@vocab': 'http://happy-dev.fr/owl/#', rdf: 'http://www.w3.org/1999/02/22-rdf-syntax-ns#', rdfs: 'http://www.w3.org/2000/01/rdf-schema#', ldp: 'http://www.w3.org/ns/ldp#', foaf: 'http://xmlns.com/foaf/0.1/', name: 'rdfs:label', acl: 'http://www.w3.org/ns/auth/acl#', permissions: 'acl:accessControl', mode: 'acl:mode' }; ``` The `@vocab` defines our...
Hi! First, your plugin is very useful, thanks! Can you add a package.json and publish it on npm?