Query-Solid icon indicating copy to clipboard operation
Query-Solid copied to clipboard

Simple access to data in Solid pods through LDflex expressions

Results 28 Query-Solid issues
Sort by recently updated
recently updated
newest added

I'm using `import solidAuth from 'solid-auth-cli';` so I can fetch in NodeJS. How to pass obtained Session to `query-ldflex`? Is there a chance to inject depencency?

I'm working on an application that needs to load vocabularies in order to fetch data, such as a label or a list of subClasses. This worked fine on localhost, but...

enhancement

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...

enhancement

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" ```...

bug

The context currently has ACL wired up. We should: - [ ] create examples with ACLs - [ ] verify they are easy - [ ] if not, add some...

enhancement

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,...

enhancement

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...

bug

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...

feature

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...

question

The function .properties returns all document properties, even if a specific subject is provided. For example, I access to subject fullNameField then call properties method but it returns all the...

bug